"""Steering stage unittest.""" __author__ = 'yuhenglong@google.com (Yuheng Long)' import unittest import steering class SteeringTest(unittest.TestCase): """This class test the Steering class. This steering algorithm should stop either it has generated a certain number of generations or the generation has no further improvement. """ def setUp(self): pass def testGeneration(self): """"Test proper termination for a number of generations.""" pass def testImprove(self): """"Test proper termination for no improvement between generations.""" pass if __name__ == '__main__': unittest.main()