ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
My guess is that (someone correct me if I'm wrong) the term suite
may be used in rostest
not as its specific usage in software testing context (as in testsuite
) but as something more general, like composite or group of testcases
, and unittest.TestSuite()
isn't handled yet.
Thus it's worth opening an enhancement request on its issue tracker.
(As a workaround I usually put TestCase
classes in separate .py
files, which isn't that cumbersome if I have only several TestCases.)
2 | No.2 Revision |
My guess is that (someone correct me if I'm wrong) the term suite
may be used in rostest
not as its specific usage in software testing context (as in testsuite
) but as something more general, like composite or group of testcasesTestCases, and . And
isn't handled unittest.TestSuite()unittest.TestSuiteyet.yet in rostest.
Thus it's worth opening an enhancement request on its issue tracker.
(As a workaround I usually put TestCase classes in separate TestCase
.py
files, which isn't that cumbersome if I have only several TestCases.)