blob: 4a76db0d422b597960a81e1950f0190556677fd4 [file] [log] [blame]
"""Task unittest.
Part of the Chrome build flags optimization.
"""
__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()