File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ slideOptions:
52
52
- Powerful unit test framework
53
53
- Sometimes called (the) ** Unit Test Framework** (UTF) or ** Boost.Test**
54
54
- Valid on all slides: ` namespace utf = boost::unit_test; `
55
- - [ List of contributors and maintainers] ( https://www.boost.org/doc/libs/1_81_0 /libs/test/doc/html/boost_test/acknowledgements.html )
55
+ - [ List of contributors and maintainers] ( https://www.boost.org/doc/libs/1_87_0 /libs/test/doc/html/boost_test/acknowledgements.html )
56
56
57
57
---
58
58
@@ -190,4 +190,4 @@ Which behavior do you then expect and why?
190
190
191
191
## Further Reading
192
192
193
- - [ Documentation of Boost Unit Test Framework] ( https://www.boost.org/doc/libs/1_78_0 /libs/test/doc/html/index.html )
193
+ - [ Documentation of Boost Unit Test Framework] ( https://www.boost.org/doc/libs/1_87_0 /libs/test/doc/html/index.html )
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ Repository: [testing boost exercise – demo-start branch](https://github.com/Si
46
46
find_package(Boost 1.71 REQUIRED unit_test_framework)
47
47
file(GLOB_RECURSE TEST_FILES CONFIGURE_DEPENDS tests/*.cpp)
48
48
add_executable(testsidemade "${TEST_FILES}")
49
+ set_property(target testsidemade PROPERTY CXX_STANDARD 11)
49
50
target_link_libraries(testsidemade PRIVATE Boost::unit_test_framework)
50
51
add_test(NAME "MatrixSolverTests" COMMAND ${CMAKE_CURRENT_BINARY_DIR}/testsidemade)
51
52
```
You can’t perform that action at this time.
0 commit comments