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

from lab02 import *
import unittest

class TestLabTwo(unittest.TestCase):
    def test_fixed(self):
        self.assertEqual(fixed(), 'Bluh Bluh Bluh ')

    def test_composition1(self):
        self.assertEqual(composition1(10), 0)

    def test_composition2(self):
        self.assertEqual(composition2(4), 12)
        self.assertEqual(composition2(10), 75)

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