def test_should_constructor_raise_an_exception_if_the_parameter_list_is_Empty( self): with self.assertRaises(EmptyCollectionException): CompositeMutation([])
def test_should_constructor_raise_an_exception_if_the_parameter_list_is_None( self): with self.assertRaises(NoneParameterException): CompositeMutation(None)