Junit4 dando “nenhum teste encontrado” ao executar o junit em casos de teste simples

0

Eu preciso de ajuda para fazer o junit4 trabalhar no Ubuntu 14.04. Eu instalei o junit corretamente (espero!), Quando eu uso junit -v no terminal ele retorna junit 4.11. No entanto, quando eu compilar com o javac: javac TestCase.java e o run junit TestCase ele retorna nenhum teste encontrado.

Meu código de teste simples é:

   import static org.junit.Assert.*;
   import org.junit.Before;
   import org.junit.Test;

   public class ClubMemberTest{

        @Test
        public void test1(){
            assertTrue(1-1==0);
        }

    }

Eu coloquei junit4.jar e junit4-4.11.jar na minha variável CLASSPATH usando o arquivo .bashrc.

Ainda sou muito novo no linux & amp; ubuntu então toda e qualquer ajuda seria muito apreciada!

    
por Mike 17.10.2015 / 12:57

1 resposta

1

Claro que não. Sua classe ClubMemberTest precisa estender junit.framework.TestCase

import org.junit.Test;
import junit.framework.TestCase;

public class ClubMemberTest extends TestCase {
    @Test
    public static void test1() {
        assertTrue(1 - 1 == 0);
    }
}
    
por A.B. 17.10.2015 / 13:04