ModelingApplicationTests.java 263 B

123456789101112131415161718
  1. package com.fdkankan.modeling;
  2. import org.junit.jupiter.api.Test;
  3. import org.springframework.boot.test.context.SpringBootTest;
  4. @SpringBootTest
  5. class ModelingApplicationTests {
  6. @Test
  7. void contextLoads() {
  8. }
  9. @Test
  10. public String test(){
  11. return "1";
  12. }
  13. }