Changes between Version 6 and Version 7 of PLATFORM_STANDARDS_AUTO_TESTS
- Timestamp:
- 01/26/09 21:35:53 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PLATFORM_STANDARDS_AUTO_TESTS
v6 v7 13 13 * Tests should either extend one of UnitTestBase, IntegrationTestBase and SystemTestBase or be marked with @UnitTest, @IntegrationTest or @SystemTest annotation when they need to inherit another class. 14 14 * All resources needed for tests should be placed in the /src/test/resources folder of the module where the test is in. 15 * Resources should be loaded by the Class.getResource method (as an example you can see how the log4j configuration file is loaded in the [source:/trunk/sophie2-platform/modules/org.sophie2.core/src/main/java/org/sophie2/core/testing/TestBase.java TestBase] class. 15 16 * Unit tests are required for all classes, integration tests should be written where is needed, system tests are not required at the current stage of development. 16 17