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

from lab03 import *
import unittest

class TestLabThree(unittest.TestCase):
    # Implement all tests here.  Use your lab02_tests.py as a reference if you
    # can't remember the format of a test.

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