加粗样式
maven 根据的使用案例
package com.yanyu;
public class Demo02 {
// 设置 一个 求 两个数 的 和 的 方法 sum
public void sum(int num1, int mum2) {
System.out.println("两个数 的 和 是 :" + (num1 + mum2));
}
}
import com.yanyu.Demo02;
import org.junit.Test;
public class MyTest {
/*
* 单元 测试 测试 sum 方法
* 方法名 见名知意
testSum test待测方法 (或者 类名)
*
* */
// alt + enter
@Test
public void testSum(){
Demo02 d = new Demo02();
d.sum(12,10);
}
}
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>javase01</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>