Skip to content

Commit 8d03f59

Browse files
committed
Update lecture slides and demo notes
1 parent a2de970 commit 8d03f59

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

05_testing_and_ci/boost_testing_intro_slides.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ slideOptions:
5252
- Powerful unit test framework
5353
- Sometimes called (the) **Unit Test Framework** (UTF) or **Boost.Test**
5454
- 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)
5656

5757
---
5858

@@ -190,4 +190,4 @@ Which behavior do you then expect and why?
190190

191191
## Further Reading
192192

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)

05_testing_and_ci/boost_testing_sidemade_demo.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Repository: [testing boost exercise – demo-start branch](https://github.com/Si
4646
find_package(Boost 1.71 REQUIRED unit_test_framework)
4747
file(GLOB_RECURSE TEST_FILES CONFIGURE_DEPENDS tests/*.cpp)
4848
add_executable(testsidemade "${TEST_FILES}")
49+
set_property(target testsidemade PROPERTY CXX_STANDARD 11)
4950
target_link_libraries(testsidemade PRIVATE Boost::unit_test_framework)
5051
add_test(NAME "MatrixSolverTests" COMMAND ${CMAKE_CURRENT_BINARY_DIR}/testsidemade)
5152
```

0 commit comments

Comments
 (0)