/
Integration Testing
Integration Testing
Overview
Documents the terminology server approach to integration testing.
Details
Unit tests should
assume "dev" configuration
use the "test" db configuration
create data and services (in @BeforeClass)
test data (in @Test)
test loading objects
test changing objects
test searching for objects
test history
Test edge cases and all known conditions
clean up date (in @AfterClass)
References/Links