aboutsummaryrefslogtreecommitdiff
path: root/doc/developer-notes.md
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-03-18 20:43:21 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2018-03-19 08:54:07 +0100
commit7b4a296a71d1b7f2555f5f63512ec964671464c0 (patch)
treeff7b83000448787023f3853eb7980de70ed34275 /doc/developer-notes.md
parent00d1680498c5550e7db1f359202d3433a092fafd (diff)
downloadbitcoin-7b4a296a71d1b7f2555f5f63512ec964671464c0.tar.xz
tests: Add note about test suite naming convention
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r--doc/developer-notes.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md
index a5468c3be3..2724fe1946 100644
--- a/doc/developer-notes.md
+++ b/doc/developer-notes.md
@@ -34,6 +34,8 @@ code.
- Constant names are all uppercase, and use `_` to separate words.
- 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`.
- **Miscellaneous**
- `++i` is preferred over `i++`.