SceneApplicationTests.java 302 B

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