1
resposta

Erro ao rodar JUnit test case

class NegociacaoTest {

    @Test(expected = IllegalArgumentException.class)
    void test() {
        new Negociacao(-20.0, 1, LocalDateTime.now());
    }

}

Quando eu tento rodar esse teste, o eclipse me diz "The Attribute expected is undefined for the annotation type Test", alguem sabe o problema?

1 resposta

Fala Higor, tudo bem?

Você está usando o JUnit 5, mas parece que está tentando usar os recursos do JUnit 4.

Veja se o import está assim:

import org.junit.jupiter.api.Test;

Abraço!