"""
------------------------------------------------------------------------------
--                                                                          --
--                                 LAB 03                                   --
--                                                                          --
--                       L A B 0 3 _ T E S T S . P Y                        --
--                                                                          --
------------------------------------------------------------------------------
-- <Your Name Here>                                                         --
--                                                                          --
-- CISC106 011 Spring 2013                                                  --
--                                                                          --
------------------------------------------------------------------------------
-- This file contains unit tests for the functions in module lab03.         --
--                                                                          --
------------------------------------------------------------------------------
"""

from lab03 import *
import unittest

class TestLabThree(unittest.TestCase):
    def test_sample(self):
        self.assertEqual(0, 0)
        self.assertAlmostEqual(0, 0.000000000001)
        self.assertTrue(6 == 6)
        self.assertFalse(7 == 6)

if __name__ == '__main__':
    try:
        unittest.main()
    except SystemExit:
        pass
