def test_delete_no_record(self): """Test case to delete an invalid ClassificationObject record.""" with self.assertRaises(ResourceNotFound): ClassificationObject().delete()
def test_save_None_record(self): """Test case to save None record.""" with self.assertRaises(TypeError): ClassificationObject().save()