comparison assertIsMember.m @ 775:c596122374df feature/grids

Add a few assert functions
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 19 Jul 2018 09:40:05 -0700
parents
children
comparison
equal deleted inserted replaced
774:66eb4a2bbb72 775:c596122374df
1 function assertIsMember(v, allowed)
2 assert(ismember(v, allowed), 'Expected ''%s'' to be in the set %s', inputname(1), toString(allowed));
3 end