Spring Boot - Testing Spring Boot Applications
What will happen when this Spring Boot test runs?
@SpringBootTest
public class MyAppTests {
@Test
void testSum() {
int result = 2 + 3;
assertEquals(5, result);
}
}