Usei a versão do spring boot 2.4.1, e fui fazer o exercício dos testes com o Junit, e não funcinou. Coloquei a versão que está nos arquivos do curso, [ 2.3.1.RELEASE] e com esta funcionou. Outro problema e que na minha classe de testes, o junit.framework.Assert, esta como deprecate
Obrigado package br.com.alura.forum;
import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner;
import junit.framework.Assert;
@RunWith(SpringRunner.class) @SpringBootTest public class ForumApplicationTests {
@Test
public void contextLoads() {
Assert.assertTrue(true);
}
}