aboutsummaryrefslogtreecommitdiff
path: root/bestflags/task_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'bestflags/task_test.py')
-rw-r--r--bestflags/task_test.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/bestflags/task_test.py b/bestflags/task_test.py
new file mode 100644
index 00000000..c21dc4dc
--- /dev/null
+++ b/bestflags/task_test.py
@@ -0,0 +1,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()