You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

run_tests.py

import unittest
from term_test import StopListTestCase

suite = unittest.makeSuite(StopListTestCase)
runner = unittest.TextTestRunner()
runner.run(suite)
        

  • No labels