task_test.py revision 16d7a5204e347855b1c3a68c982c22f931a12866
1# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Task unittest.
6
7Part of the Chrome build flags optimization.
8"""
9
10__author__ = 'yuhenglong@google.com (Yuheng Long)'
11
12import unittest
13
14import task
15
16
17class TaskTest(unittest.TestCase):
18  """This class test the Task class.
19
20  The getter and setter should function properly.
21  """
22
23  def setUp(self):
24    pass
25
26  def testFlag(self):
27    """"Test proper access of the flags."""
28    pass
29
30  def testChecksum(self):
31    """"Test proper access of the check sum."""
32    pass
33
34  def testImage(self):
35    """"Test proper access of the image."""
36    pass
37
38if __name__ == '__main__':
39  unittest.main()
40