From 36d1a8d961017548e8bd443ee203a58f753b8584 Mon Sep 17 00:00:00 2001 From: Mark Cunningham Date: Tue, 17 May 2022 19:24:54 +0100 Subject: [PATCH] Update coding_principles.md --- principles/coding_principles.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/principles/coding_principles.md b/principles/coding_principles.md index a87fa96b..31589f26 100644 --- a/principles/coding_principles.md +++ b/principles/coding_principles.md @@ -40,3 +40,12 @@ They will not have the understanding and context you do at the time of writing i ### Code securely > We incorporate good security practice in all our code + +### Test your code + +> When writing code, tests can act as good documentation as well as avoiding bugs and regression issues. + +- It is usually self documenting +- Increases quality +- Provides confidence in the implementation +- For low code platforms, Integration testing often adds more value