def test_empty_class_is_full_return_flase(self):
     test_class = ClassList(2)
     full = test_class.is_class_full()
     self.assertFalse(full)
 def test_class_is_full_method_when_class_is_full(self):
     test_class = ClassList(2)
     test_class.add_student('Kirk Cousins')
     test_class.add_student('Deshaun Watson')
     full = test_class.is_class_full()
     self.assertTrue(full)