14 lines
353 B
Java
14 lines
353 B
Java
package enseirb.myinpulse;
|
|
|
|
import org.junit.jupiter.api.DisplayName;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
@SpringBootTest
|
|
class MyinpulseApplicationTests {
|
|
|
|
@Test
|
|
@DisplayName("contextLoad => Test if the context can load, i.e. the application can start")
|
|
void contextLoads() {}
|
|
}
|