Skip to content

Commit 30212ef

Browse files
authored
Update everything-as-code.md
1 parent 2cef90f commit 30212ef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

patterns/everything-as-code.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ While effective testing is the best way to detect bugs or non-functional problem
7070
- Is the code clear and simple?
7171
- Is the code layout and structure consistent with agreed style and other code? (please see [enforce code formatting](enforce-code-formatting.md))
7272
- Would it easily allow future modification to meet slightly different needs, e.g. ten times the required data size or throughput?
73+
- Is it [built for testability](#)?
74+
- Are the automated tests positioned appropriately in the [test pyramid](#), triggered appropriately in CI builds, etc?
75+
- Are there any missing [automated tests](#), e.g. edge-cases that have not yet been considered?
7376
- Have the non-functional requirements been considered (performance, scalability, robustness, etc)?
7477
- Are common security issues guarded against (e.g. [OWASP Top 10](https://owasp.org/www-project-top-ten/))? Including:
7578
- Is any new input data being treated as potentially hostile?

0 commit comments

Comments
 (0)