mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
* Make it possible to build and run tests in CLion
and Visual Studio 2019 out of the box
* Provide four types of initial test using different test frameworks:
* Catch2 test framework
* Traditional unit testing using Catch2
* Approval test using Catch2
* Google Test test framework
* Traditional unit testing using Google Test
* Approval test using Google Test
* The different types of initial test are located in separate folders
in the test folder.
* Remove scripts to build and run tests and replace
with instructions in the cpp README.md
* Use C++17
* Use CMake => 3.13
16 lines
762 B
CMake
16 lines
762 B
CMake
set(TEST_NAME GildedRoseGoogletestUnitTests)
|
|
add_executable(${TEST_NAME})
|
|
target_sources(${TEST_NAME} PRIVATE GildedRoseGoogletestUnitTests.cc)
|
|
target_link_libraries(${TEST_NAME} src gtest gtest_main)
|
|
set_property(TARGET ${TEST_NAME} PROPERTY CXX_STANDARD 17)
|
|
add_test(NAME ${TEST_NAME} COMMAND ${TEST_NAME})
|
|
|
|
# Set compiler option /FC for Visual Studio to to make the __FILE__ macro expand to full path.
|
|
# The __FILE__ macro can be used to get the path to current test file.
|
|
# Links:
|
|
# * https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros?view=vs-2019
|
|
# * https://docs.microsoft.com/en-us/cpp/build/reference/fc-full-path-of-source-code-file-in-diagnostics?view=vs-2019
|
|
if (MSVC)
|
|
target_compile_options(${TEST_NAME} PRIVATE "/FC")
|
|
endif()
|