First page Back Continue Last page Summary Graphics
Guidelines, testing
Code testing
- Use JUnit for writing test code
- Make sure your code works ! After all, you are responsible...
- Does any regular or irregular errors occure ?
Function testing
- Does the app do what its supposed to do ?
- Does the app work when used as its not supposed to ?
- Is the business logic correct ?
- Is persistent data handled correctly ?
- Is non-persistent data handled correctly ?
Implementation testing
- Does it work in another environment or language ?
- Does it work with other data ?
- Does it handle unexpected use ?
Notes: