diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-03-18 20:43:21 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-03-19 08:54:07 +0100 |
commit | 7b4a296a71d1b7f2555f5f63512ec964671464c0 (patch) | |
tree | ff7b83000448787023f3853eb7980de70ed34275 /doc | |
parent | 00d1680498c5550e7db1f359202d3433a092fafd (diff) |
tests: Add note about test suite naming convention
Diffstat (limited to 'doc')
-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 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++`. |