123456789101112131415161718 |
- package com.fdkankan.modeling;
- import org.junit.jupiter.api.Test;
- import org.springframework.boot.test.context.SpringBootTest;
- @SpringBootTest
- class ModelingApplicationTests {
- @Test
- void contextLoads() {
- }
- @Test
- public String test(){
- return "1";
- }
- }
|