diff options
| author | practicalswift <[email protected]> | 2018-03-18 20:43:21 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-03-19 08:54:07 +0100 |
| commit | 7b4a296a71d1b7f2555f5f63512ec964671464c0 (patch) | |
| tree | ff7b83000448787023f3853eb7980de70ed34275 /doc/developer-notes.md | |
| parent | Merge #12710: Append scripts to new test_list array to fix bad assignment (diff) | |
| download | discoin-7b4a296a71d1b7f2555f5f63512ec964671464c0.tar.xz discoin-7b4a296a71d1b7f2555f5f63512ec964671464c0.zip | |
tests: Add note about test suite naming convention
Diffstat (limited to 'doc/developer-notes.md')
| -rw-r--r-- | doc/developer-notes.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index a5468c3be..2724fe194 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++`. |