-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Tests for Mapping Binary Heap #23
Add Tests for Mapping Binary Heap #23
Conversation
Changes to be committed: new file: tests/DataStructures/Container/TestMappingBinaryHeap.cpp new file: tests/DataStructures/Container/TestMappingBinaryHeap.hpp
At the moment the The test framework returns the following warning that we try to avoid. Thus, we run the tests single threaded to have stable tests.
|
…Test warning What? Warning: NG] /Users/runner/work/egoa/egoa/external/GoogleTestFramework/googletest/src/gtest-death-test.cc:1102:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test detected 3 threads. See https://github.com/google/googletest/blob/main/docs/advanced.md#death-tests-and-threads for more explanation and suggested solutions, especially if this is the last message you see before your test times out.
…uctures/mappingbinaryheap
* Add tests for mapping binary heap Changes to be committed: new file: tests/DataStructures/Container/TestMappingBinaryHeap.cpp new file: tests/DataStructures/Container/TestMappingBinaryHeap.hpp * Enable the tests for MappingBinaryHeap within the framework * Run test in single threaded mode to avoid Google Testframework Death Test warning What? Warning: NG] /Users/runner/work/egoa/egoa/external/GoogleTestFramework/googletest/src/gtest-death-test.cc:1102:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test detected 3 threads. See https://github.com/google/googletest/blob/main/docs/advanced.md#death-tests-and-threads for more explanation and suggested solutions, especially if this is the last message you see before your test times out. * Update test with assertion and exception handling differentiation * Rename some TestFixtureNames * Renaming some TestNames * Change from parallel to j * Add missing namespace ::testing::MatchesRegex * Forgot an round brackets escape aeec600
* Add tests for mapping binary heap Changes to be committed: new file: tests/DataStructures/Container/TestMappingBinaryHeap.cpp new file: tests/DataStructures/Container/TestMappingBinaryHeap.hpp * Enable the tests for MappingBinaryHeap within the framework * Run test in single threaded mode to avoid Google Testframework Death Test warning What? Warning: NG] /Users/runner/work/egoa/egoa/external/GoogleTestFramework/googletest/src/gtest-death-test.cc:1102:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test detected 3 threads. See https://github.com/google/googletest/blob/main/docs/advanced.md#death-tests-and-threads for more explanation and suggested solutions, especially if this is the last message you see before your test times out. * Update test with assertion and exception handling differentiation * Rename some TestFixtureNames * Renaming some TestNames * Change from parallel to j * Add missing namespace ::testing::MatchesRegex * Forgot an round brackets escape aeec600
* Add tests for mapping binary heap Changes to be committed: new file: tests/DataStructures/Container/TestMappingBinaryHeap.cpp new file: tests/DataStructures/Container/TestMappingBinaryHeap.hpp * Enable the tests for MappingBinaryHeap within the framework * Run test in single threaded mode to avoid Google Testframework Death Test warning What? Warning: NG] /Users/runner/work/egoa/egoa/external/GoogleTestFramework/googletest/src/gtest-death-test.cc:1102:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test detected 3 threads. See https://github.com/google/googletest/blob/main/docs/advanced.md#death-tests-and-threads for more explanation and suggested solutions, especially if this is the last message you see before your test times out. * Update test with assertion and exception handling differentiation * Rename some TestFixtureNames * Renaming some TestNames * Change from parallel to j * Add missing namespace ::testing::MatchesRegex * Forgot an round brackets escape aeec600
* Add tests for mapping binary heap Changes to be committed: new file: tests/DataStructures/Container/TestMappingBinaryHeap.cpp new file: tests/DataStructures/Container/TestMappingBinaryHeap.hpp * Enable the tests for MappingBinaryHeap within the framework * Run test in single threaded mode to avoid Google Testframework Death Test warning What? Warning: NG] /Users/runner/work/egoa/egoa/external/GoogleTestFramework/googletest/src/gtest-death-test.cc:1102:: Death tests use fork(), which is unsafe particularly in a threaded context. For this test, Google Test detected 3 threads. See https://github.com/google/googletest/blob/main/docs/advanced.md#death-tests-and-threads for more explanation and suggested solutions, especially if this is the last message you see before your test times out. * Update test with assertion and exception handling differentiation * Rename some TestFixtureNames * Renaming some TestNames * Change from parallel to j * Add missing namespace ::testing::MatchesRegex * Forgot an round brackets escape aeec600
This PR introduces the first test for the mapping binary heap.