...
Code | Description |
---|---|
NFR1 | Responses to all user-initiated actions in the web-interface need to be rendered in less than 1 second. |
NFR2 | The data from the racecar needs to be processed twenty times per second. |
NFR3 | The application maintains connection to the internet at all times... |
Security
Code | Description |
---|---|
NFR3 | Only the highly necessary security is needed. | NFR4 | ...
NFR4 | The application is protected against SQL injection. |
NFR5 | Passwords should be hashed before being stored in a database. |
Usability
Code | Description |
---|---|
NFR6 | The code should contain commentary, so that it's possible for another team to understand the code. |
Reliability
Code | Description |
---|---|
NFR7 | The data should be accurate to about x percent. |
NFR8 | There should be no bad smells present in the codeData accuracy is more important than application speed. |
Documentation
Code | Description |
---|---|
NFR9 | All documentation has to be written in English. |
NFR10 | #148484 is the main color and the secondary color is #81c8bd. |
...
NFR11 | Data is stored in plain text. |
Supportability
Code | Description |
---|---|
NFR12 | All made systems should be expandable, so future work or expansion of current features is easy to implement. |
NFR13 | All unit test must be a success with an 80% line coverage. |