1234567891011121314151617181920212223 |
- package com.fdkankan.scene;
- import org.junit.jupiter.api.Test;
- import org.springframework.boot.test.context.SpringBootTest;
- @SpringBootTest
- class ApplicationTests {
- @Test
- void contextLoads() {
- }
- @Test
- public String test2() throws Exception {
- return "123";
- }
- }
|