Skip to content

Commit

Permalink
v1.20.0 Update version number, Readme and Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmoene committed Dec 26, 2014
1 parent 743fefe commit cf2ee32
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changes for lest � lest errors escape testing


version 1.20.0 2014-12-26

- Add lest_MODULE().
- Add example with tests across multiple files for lest.hpp using lest_MODULE().
- Add example with tests across multiple files for lest_cpp03.hpp.


version 1.19.2 2014-12-26

- Fix missing inline.
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Synopsis
- [Fixture macros](#fixture-macros)
- [Assertion macros](#assertion-macros)
- [BDD style macros](#bdd-style-macros)
- [Module registration macro](#module-registration-macro)
- [Other macros](#other-macros)
- [Namespace](#namespace)
- [Tests](#tests)
Expand Down Expand Up @@ -205,6 +206,11 @@ Note that EXPECT(), EXPECT\_NOT(), EXPECT\_NO\_THROW(), EXPECT\_THROWS() and EXP
These macros simply map to macros CASE(), SETUP() and SECTION().
### Module registration macro
**MODULE(** _all-specifications_, _module-specifications_ **)**
Register this module's test specifications with the overall specification – [Code example](examples/11-module-1.cpp).
Note that _lest_cpp03_ doesn't need the MODULE() macro, see the [cpp03 module example](examples/12-module-cpp03-1.cpp).
### Other macros
-D<b>lest_NO_SHORT_ASSERTION_NAMES</b>
Define this to omit the shortened alias macros for the lest_EXPECT... macros.
Expand Down Expand Up @@ -328,6 +334,7 @@ Report passing tests | + | + | - | - |
Time duration of tests | + | + | - | - |
Control order of tests | + | + | - | - |
Repeat tests | + | + | - | - |
Modules of tests | + | + | - | - |
&nbsp; | &nbsp; |&nbsp; |&nbsp; |&nbsp; |
Suites of tests | - | - | - | - |
Parameterised tests | - | - | - | - |
Expand Down
2 changes: 1 addition & 1 deletion lest.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# pragma GCC diagnostic ignored "-Wunused-value"
#endif

#define lest_VERSION "1.19.2"
#define lest_VERSION "1.20.0"

#ifndef lest_FEATURE_COLOURISE
# define lest_FEATURE_COLOURISE 0
Expand Down
2 changes: 1 addition & 1 deletion lest_cpp03.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# pragma GCC diagnostic ignored "-Wunused-value"
#endif

#define lest_VERSION "1.19.2"
#define lest_VERSION "1.20.0"

#ifndef lest_FEATURE_COLOURISE
# define lest_FEATURE_COLOURISE 0
Expand Down

0 comments on commit cf2ee32

Please sign in to comment.