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?