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

from lab04 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()
