资源简介
有关java单元测试的一些基础例子,以及TestSuite类的使用。
代码片段和文件信息
package com.phicomme.hu;
public class Student
{
private String name;
private String sex;
private int high;
private int age;
private String school;
public Student(String name String sex int high int age String school)
{
this.name = name;
this.sex = sex;
this.high = high;
this.age = age;
this.school = school;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public String getSex()
{
return sex;
}
public void setSex(String sex)
{
this.sex = sex;
}
public int getHigh()
{
return high;
}
public void setHigh(int high)
{
this.high = high;
}
public int getAge()
{
return age;
}
public boolean setAge(int age)
{
if (age >25)
{
return false;
}
else
{
this.age = age;
return true;
}
}
public String getSchool()
{
return school;
}
public void setSchool(String school)
{
this.school = school;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 379 2012-12-07 09:39 TestStudent\.classpath
文件 387 2012-12-13 18:23 TestStudent\.project
文件 629 2012-12-07 09:35 TestStudent\.settings\org.eclipse.jdt.core.prefs
文件 1485 2012-12-13 18:28 TestStudent\bin\com\phicomme\hu\Student.class
文件 1342 2012-12-13 18:38 TestStudent\bin\com\phicomme\hu\StudentTest02.class
文件 656 2012-12-13 18:44 TestStudent\bin\com\phicomme\test\AllTest.class
文件 1235 2012-12-13 18:34 TestStudent\bin\com\phicomme\test\StudentTest.class
文件 1326 2012-12-13 18:40 TestStudent\bin\com\phicomme\test\StudentTest01.class
文件 1293 2012-12-13 18:28 TestStudent\src\com\phicomme\hu\Student.java
文件 657 2012-12-13 18:38 TestStudent\src\com\phicomme\hu\StudentTest02.java
文件 571 2012-12-13 18:44 TestStudent\src\com\phicomme\test\AllTest.java
文件 953 2012-12-13 18:34 TestStudent\src\com\phicomme\test\StudentTest.java
文件 1160 2012-12-13 18:40 TestStudent\src\com\phicomme\test\StudentTest01.java
目录 0 2012-12-13 18:24 TestStudent\bin\com\phicomme\hu
目录 0 2012-12-13 18:25 TestStudent\bin\com\phicomme\test
目录 0 2012-12-13 18:24 TestStudent\src\com\phicomme\hu
目录 0 2012-12-13 18:25 TestStudent\src\com\phicomme\test
目录 0 2012-12-13 18:23 TestStudent\bin\com\phicomme
目录 0 2012-12-07 09:40 TestStudent\src\com\phicomme
目录 0 2012-12-13 18:23 TestStudent\bin\com
目录 0 2012-12-07 09:35 TestStudent\src\com
目录 0 2012-12-07 09:35 TestStudent\.settings
目录 0 2012-12-13 18:23 TestStudent\bin
目录 0 2012-12-07 09:35 TestStudent\src
目录 0 2012-12-07 09:35 TestStudent
----------- --------- ---------- ----- ----
12073 25
- 上一篇:ImagePicker-master.zip
- 下一篇:Java防篡改方式
相关资源
- junit-5.2.3.jar
- hamcrest-core-1.3.jar 单元测试JUnit框架必
- spring整合单元测试Junit开发包
- junit.jar + hamcrest-core.jar + hamcrest-libra
- junit-4.9官方
- junit-4.7.jar
- spring-boot整合MySQL、mybatis、Juniteclips
- springMVC集成junit4需要的jar包
- junit-4.0.jar
- junit-4.12.jar
- junit4.9 jar包
- junit包,jar包,测试必备
- junit的jar包
- Junit中jar包
- Junit之jar包
- Java Unit Testing with JUnit 5 无水印原版
- junit-4.8.2.jar包程序文件
- junit-4.jar工具
- JUnit5所需的jar包,导入完就可以用
- java单元测试包junit4.jar和hamcrest.core.
-
安卓-Junit-文件存储-xm
l解析方式-数 - junit-4.12.jar hamcrest-library-1.3.rc2.jar ha
- maven+spring+mybatis+junit
评论
共有 条评论