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