
测试
bluelzx
这个作者很懒,什么都没留下…
展开
-
单元测试 Junit
每当你接获臭虫提报时,请先撰写一个单元测试来揭发这只臭虫。 Junit这个单元测试框架可以很好地检测我们的代码。 比较喜欢Junit4的annotation,不错。 http://junit.sourceforge.net/doc/cookbook/cookbook.htm Junit4 test demo: public class AddOperationTest extends TestC...2008-05-22 10:18:05 · 103 阅读 · 0 评论 -
Junit4 Fixture
Fixture http://www.blogjava.net/relax/archive/2007/03/05/101945.html 何 谓 Fixture?它是指在执行一个或者多个测试方法时需要的一系列公共资源或者数据,例如测试环境,测试数据等等。在编写单元测试的过程中,您会发现在大 部分的测试方法在进行真正的测试之前都...2008-05-22 10:23:34 · 366 阅读 · 0 评论 -
maven2 junit4
maven version 2.08 java version 1.6.0_06 在pom.xml里加入: <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version...2008-05-22 10:55:32 · 143 阅读 · 0 评论 -
TestNG
http://testng.org/doc/ TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use, such as: JDK 5 Annotations (...2008-05-22 11:18:38 · 74 阅读 · 0 评论 -
maven2 TestNG
TestNG 在maven2 的pom.xml文件里的配置: Configuring TestNG To get started with TestNG, include the following dependency in your project: [...] <dependency> <groupId>org.testng</groupId&g...2008-05-22 11:31:17 · 107 阅读 · 0 评论