blob: c21dc4dc37593cf6cc7f84fc6fffff7d08a674b8 [file] [log] [blame]
"""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()