We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a14028 commit f28ce4dCopy full SHA for f28ce4d
src/test/java/com/gourav/restApi/RestApiApplicationTest.java
@@ -0,0 +1,14 @@
1
+package com.gourav.restApi;
2
+
3
+import org.junit.Test;
4
+import org.junit.runner.RunWith;
5
+import org.springframework.boot.test.context.SpringBootTest;
6
+import org.springframework.test.context.junit4.SpringRunner;
7
8
+@RunWith(SpringRunner.class)
9
+@SpringBootTest
10
+public class RestApiApplicationTest {
11
+ @Test
12
+ public void contextLoads() {
13
+ }
14
+}
0 commit comments