-
Notifications
You must be signed in to change notification settings - Fork 0
Testing
Thomas Czogalik edited this page Dec 19, 2019
·
6 revisions
What are unit tests, integration tests, smoke tests, and regression tests?
Colaboration Test Does the Unit talks correctly to the next layer?
Contract Test Does the Unit implements contracts correctly?
- record behaviour (input and output) of application
- afterwards refactoring can start
- meanwhile write unit tests so you can finally remove the golden master test
- how to not write golden master
- how to test listview adapter link1, link2
- set up test suit
- how to create code coverage report