task_test.py revision f20cffac082e3d920818f230ffc80ae6976267c0
1"""Task unittest."""
2
3__author__ = 'yuhenglong@google.com (Yuheng Long)'
4
5import unittest
6
7import task
8
9
10class TaskTest(unittest.TestCase):
11  """This class test the Task class.
12
13  The getter and setter should function properly.
14  """
15
16  def setUp(self):
17    pass
18
19  def testFlag(self):
20    """"Test proper access of the flags."""
21    pass
22
23  def testChecksum(self):
24    """"Test proper access of the check sum."""
25    pass
26
27  def testImage(self):
28    """"Test proper access of the image."""
29    pass
30
31if __name__ == '__main__':
32  unittest.main()
33