6 Best Practices with Integration Testing in CI Environments: TechBeacon
- https://techbeacon.com/6-best-practices-integration-testing-ci-environment
- Develop Integration Tests First as they are better suited to catch problems INTRODUCED
- Then Unit tests as they are better suited to verify a system INITIALLY, then FIND the source of NEW problems
- Integration first, until the fail
- Then run Unit Tests to ID source
- When Unit Tests pass again
- Run Integration Tests
- Bounce between the two until both are passing
Tags