使用Junit时源代码和测试代码的组织

2008-02-23 09:47:48来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

近来在学习使用 Junit test framwork .关于源代码和测试代码的组织问题我看了一些资料。其中有这样的建议:
1. Create test cases in the same package as the code under test. For example, the com.mydotcom.ecommerce package would contain all the application-level classes as well as the test cases for those components.

2.To avoid combining application and testing code in your source directories, create a mirrored directory structure aligned with the package structure that contains the test code.

(http://www.clarkware.com/articles/JUnitPrimer.html)

就是说测试代码应该被测试代码放在同一个package中,但是测试代码放在一个独立的目录中.也就是组织成下面这样:

1.     esrc
2.       com
3.         s xyz
4.              HelloWorld.java
5.      test
6.        com
7.     
			   
			   

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Eclipse 3.1 M7 发布了...

下一篇:JAVA开发者应该去的20个英文网站