|
1 | 1 | <a href="http://www.boost.org/LICENSE_1_0.txt" target="_blank"></a>
|
2 | 2 | <a href="https://github.com/cpp-testing/GUnit/releases" target="_blank"></a>
|
3 |
| -<a href="https://travis-ci.org/cpp-testing/GUnit" target="_blank"></a> |
| 3 | +<a href="https://github.com/cpp-testing/GUnit/actions/workflows/linux.yml" target="_blank"></a>
|
5 | 7 | <a href="http://github.com/cpp-testing/GUnit/issues" target="_blank"></a>
|
6 | 8 |
|
|
210 | 212 | * `GUnit.GSteps` - Behaviour Driven Development
|
211 | 213 | * Support for - [Gherkin](https://github.com/cucumber/cucumber/wiki/Gherkin) style - BDD tests
|
212 | 214 | * `GUnit.GAssert` - Google.Test assertions without postfixes
|
213 |
| - * Simple/consised interface - `EXPECT(true); EXPECT(.0 > 2.0); ASSERT(11 != 42), ...` |
| 215 | + * Simple/consised interface - `EXPECT(true); EXPECT(.0 > 2.0); ASSERT(11 != 42), ...` |
214 | 216 | * No more EXPECT_EQ/EXPECT_GT/...
|
215 | 217 | * No more confusing error messages depending on expected, given parameters
|
216 | 218 | * No more bugs due to using the wrong EXPECT for floating point numbers (EXPECT_DOUBLE_EQ) and/or strings
|
|
260 | 262 | Note: This sections needs updates, when writing the gherkin-cpp CMake integration I used add_subdirectory:
|
261 | 263 | * Add include paths
|
262 | 264 | * `-I GUnit_install_dir/include`
|
263 |
| - * Link with `libgherkin-cpp.{a, so}` Note: I wasn't able to nest the fmem/gherkin into libghekin-cpp, so two more libs to add: fmem/gherkin! |
| 265 | + * Link with `libgherkin-cpp.{a, so}` Note: I wasn't able to nest the fmem/gherkin into libghekin-cpp, so two more libs to add: fmem/gherkin! |
264 | 266 | * `-L gherkin-cpp`
|
265 | 267 | * `-L fmem`
|
266 | 268 | * `-L gherkin`
|
|
0 commit comments