MCPcopy Create free account
hub / github.com/DanielChappuis/reactphysics3d / addTestSuite

Method addTestSuite

test/TestSuite.cpp:79–86  ·  view source on GitHub ↗

Add a test suite to the current test suite

Source from the content-addressed store, hash-verified

77
78// Add a test suite to the current test suite
79void TestSuite::addTestSuite(const TestSuite& testSuite) {
80
81 // Add each test of the test suite to the current one
82 for (size_t i =0; i < testSuite.mTests.size(); i++) {
83 assert(testSuite.mTests[i] != nullptr);
84 addTest(testSuite.mTests[i]);
85 }
86}
87
88// Launch the tests of the test suite
89void TestSuite::run() {

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected