diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-06-05 18:33:29 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-06-05 18:33:29 +0200 |
| commit | fe40c3fc1f371d2da7918365c6dd6ec8a6c40dd4 (patch) | |
| tree | 7cc8e64e94396582a27387236736871add983467 /lib | |
| parent | 14c2a945157d3e790506d97a5dc6f07b7e38ae26 (diff) | |
| download | turns-fe40c3fc1f371d2da7918365c6dd6ec8a6c40dd4.tar.xz turns-fe40c3fc1f371d2da7918365c6dd6ec8a6c40dd4.zip | |
lib: rename test initializers
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | lib/tests/glib-test.cpp (renamed from lib/tests/runtime_init.cpp) | 4 | ||||
| -rw-r--r-- | lib/tests/turnsmm/glibmm-test.cpp (renamed from lib/tests/turnsmm/runtime_init.cpp) | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 2aa7b74..74e6343 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -145,7 +145,7 @@ install(TARGETS "libmm" # Tests add_executable("lib-tests" - "tests/runtime_init.cpp" + "tests/glib-test.cpp" "tests/turns-participant.cpp" "tests/turns-turn-order.cpp" ) @@ -168,7 +168,7 @@ catch_discover_tests("lib-tests") # C++ Wrapper Tests add_executable("libmm-tests" - "tests/turnsmm/runtime_init.cpp" + "tests/turnsmm/glibmm-test.cpp" "tests/turnsmm/participant.cpp" "tests/turnsmm/turn-order.cpp" ) diff --git a/lib/tests/runtime_init.cpp b/lib/tests/glib-test.cpp index f896d71..86fb5f9 100644 --- a/lib/tests/runtime_init.cpp +++ b/lib/tests/glib-test.cpp @@ -11,7 +11,7 @@ namespace turns::core::tests { - struct glib_test_init : Catch::EventListenerBase + struct glib_test : Catch::EventListenerBase { using Catch::EventListenerBase::EventListenerBase; @@ -21,6 +21,6 @@ namespace turns::core::tests } }; - CATCH_REGISTER_LISTENER(glib_test_init); + CATCH_REGISTER_LISTENER(glib_test); } // namespace turns::core::tests
\ No newline at end of file diff --git a/lib/tests/turnsmm/runtime_init.cpp b/lib/tests/turnsmm/glibmm-test.cpp index ee529b9..1c93cb7 100644 --- a/lib/tests/turnsmm/runtime_init.cpp +++ b/lib/tests/turnsmm/glibmm-test.cpp @@ -19,7 +19,7 @@ namespace turns::core::tests { - struct glib_test_init : Catch::EventListenerBase + struct glibmm_test : Catch::EventListenerBase { using Catch::EventListenerBase::EventListenerBase; @@ -36,6 +36,6 @@ namespace turns::core::tests } }; - CATCH_REGISTER_LISTENER(glib_test_init); + CATCH_REGISTER_LISTENER(glibmm_test); } // namespace turns::core::tests
\ No newline at end of file |
