Commit 00ecfd4e by wangguangchao

增加单元测试代码

parent 73469306
*.iml
classes
.idea
target
.settings
logs
.classpath
.factorypath
**.log
**/classes
**/*.iml
**/.idea
**/target
**/.settings
**/logs
**/**.log
**/*.class
**/bin
**/test-output
**/.classpath
**/.factorypath
/bak/
package com.brilliance.hk;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
/**
* @author wangguangchao
* @create 2023-11-29 17:32
*/
@SpringBootTest
public class ApplicationTest {
@Test
public void test1(){
System.out.println("hello,junit!!!");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment