aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-04-05 22:27:15 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-04-06 16:29:14 +0200
commitdc8067b3e6297884a4861783bcb54a5941b271df (patch)
tree5484569aa97108ad74b0c90f08aec8e802ee2dde /doc
parent3ebfb2dadbe63199a4712a46a7e72976d291193b (diff)
downloadbitcoin-dc8067b3e6297884a4861783bcb54a5941b271df.tar.xz
tests: Add note about uniqueness requirement for test suite names
Diffstat (limited to 'doc')
-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 b00cceb987..bbfaf032f6 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++`.