diff --git a/Test.java b/Test.java new file mode 100644 index 0000000..7a3e844 --- /dev/null +++ b/Test.java @@ -0,0 +1,17 @@ +package com.example.demo; +//testing add + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@SpringBootTest +public class DemoApplicationTests { + + @Test + public void contextLoads() { + } + +}