import unittest


class TestSmoke(unittest.TestCase):
    def test_harness_wiring(self):
        """Replace with real tests once the first feature lands."""
        self.assertTrue(True)


if __name__ == "__main__":
    unittest.main()
