You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests currently in test/pyroestest/test_system.py won't give useful error messages, and may pass for the wrong reasons. While they're a good smoke test, we should add another set of tests that follows a pattern like
class TestSystem(unittest.Testcase):
class InternalTester(unittest.TestCase):
@decorators
def test_function(self, stuff)
self._testcase = InternalTester
def test_testcase(self):
with self.assertRaises(CorrectException):
self._testcase.test_function()
Some more meat to it than that (correctly running the test contextually) but that's the idea.
The text was updated successfully, but these errors were encountered:
The tests currently in test/pyroestest/test_system.py won't give useful error messages, and may pass for the wrong reasons. While they're a good smoke test, we should add another set of tests that follows a pattern like
Some more meat to it than that (correctly running the test contextually) but that's the idea.
The text was updated successfully, but these errors were encountered: