aboutsummaryrefslogtreecommitdiff
path: root/bestflags/task_test.py
blob: c21dc4dc37593cf6cc7f84fc6fffff7d08a674b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""Task unittest."""

__author__ = 'yuhenglong@google.com (Yuheng Long)'

import unittest

import task


class TaskTest(unittest.TestCase):
  """This class test the Task class.

  The getter and setter should function properly.
  """

  def setUp(self):
    pass

  def testFlag(self):
    """"Test proper access of the flags."""
    pass

  def testChecksum(self):
    """"Test proper access of the check sum."""
    pass

  def testImage(self):
    """"Test proper access of the image."""
    pass

if __name__ == '__main__':
  unittest.main()