Commit 770400ec authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

add missing test cases to determ/probab test suites

No related merge requests found
Showing with 13 additions and 2 deletions
+13 -2
......@@ -92,7 +92,11 @@ if __name__ == '__main__':
test_suite = unittest.TestSuite()
test_suite.addTests(
test_loader.loadTestsFromTestCase(TestMetrics))
test_loader.loadTestsFromTestCase(TestMetrics)
)
test_suite.addTests(
test_loader.loadTestsFromTestCase(TestTransform)
)
runner = unittest.TextTestRunner(verbosity=2)
runner.run(test_suite)
......@@ -90,7 +90,14 @@ if __name__ == '__main__':
test_suite = unittest.TestSuite()
test_suite.addTests(
test_loader.loadTestsFromTestCase(TestMetrics))
test_loader.loadTestsFromTestCase(TestMetrics)
)
test_suite.addTests(
test_loader.loadTestsFromTestCase(TestDecomposition)
)
test_suite.addTests(
test_loader.loadTestsFromTestCase(TestMasking)
)
runner = unittest.TextTestRunner(verbosity=2)
runner.run(test_suite)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment