steering_test.py revision f20cffac082e3d920818f230ffc80ae6976267c0
1"""Steering stage unittest."""
2
3__author__ = 'yuhenglong@google.com (Yuheng Long)'
4
5import unittest
6
7import steering
8
9
10class SteeringTest(unittest.TestCase):
11  """This class test the Steering class.
12
13  This steering algorithm should stop either it has generated a certain number
14  of generations or the generation has no further improvement.
15  """
16
17  def setUp(self):
18    pass
19
20  def testGeneration(self):
21    """"Test proper termination for a number of generations."""
22    pass
23
24  def testImprove(self):
25    """"Test proper termination for no improvement between generations."""
26    pass
27
28if __name__ == '__main__':
29  unittest.main()
30