From dc8067b3e6297884a4861783bcb54a5941b271df Mon Sep 17 00:00:00 2001 From: practicalswift Date: Thu, 5 Apr 2018 22:27:15 +0200 Subject: [PATCH] tests: Add note about uniqueness requirement for test suite names --- doc/developer-notes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/developer-notes.md b/doc/developer-notes.md index b00cceb98..bbfaf032f 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -72,7 +72,8 @@ code. - Class names, function names and method names are UpperCamelCase (PascalCase). Do not prefix class names with `C`. - Test suite naming convention: The Boost test suite in file - `src/test/foo_tests.cpp` should be named `foo_tests`. + `src/test/foo_tests.cpp` should be named `foo_tests`. Test suite names + must be unique. - **Miscellaneous** - `++i` is preferred over `i++`.