summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/CMakeLists.txt4
-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