本文主要是介绍软件3班20240612,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
加粗样式
maven 根据的使用案例
package com.yanyu;public class Demo02 {// 设置 一个 求 两个数 的 和 的 方法 sumpublic 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@Testpublic 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>
这篇关于软件3班20240612的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!