aboutsummaryrefslogtreecommitdiff
path: root/doc/developer-notes.md
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2018-04-05 22:27:15 +0200
committerpracticalswift <[email protected]>2018-04-06 16:29:14 +0200
commitdc8067b3e6297884a4861783bcb54a5941b271df (patch)
tree5484569aa97108ad74b0c90f08aec8e802ee2dde /doc/developer-notes.md
parenttests: Avoid test suite name collision in wallet crypto_tests (diff)
downloaddiscoin-dc8067b3e6297884a4861783bcb54a5941b271df.tar.xz
discoin-dc8067b3e6297884a4861783bcb54a5941b271df.zip
tests: Add note about uniqueness requirement for test suite names
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r--doc/developer-notes.md3
1 files changed, 2 insertions, 1 deletions
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++`.