开发者

What is the correct terminology & best practice for common fixtures between test classes?

I understand in Junit 4, @Before can be used to setup test fixtures for the test cl开发者_运维技巧ass's multiple test methods.

However, in my system, there are common test objects i would like to have available for all tests.

What is the most appropriate name for these objects and what is a good best practice way to store them?


The best practice is to create them in the fixture so as to keep the tests isolated, unless their state is not changed by the tests (such as a logger). Otherwise one may have side-effects between the tests: one test failing because of another one, or the opposite.


There is definitely a use case for having some shared data between test cases. JUnit provides the @BeforeClass annotation for this. Should help you I hope...

http://junit.sourceforge.net/javadoc/org/junit/BeforeClass.html


The preferred names for your common test objects will depend on what these objects really are (I can't help unless you provide more detail). If you want to share an object between all the tests then it must be static in your test class (JUnit will recreate the test class before every test).


Why not have an abstract BaseTest superclass that holds the common objects and initializes them, either in the constructor or a @BeforeClass method?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜