verifyTrue.m
% This function is part of the NMSM Pipeline, see file for full license.
%
% This function calls an error if the value is not true
%
% (boolean, ) -> (number)
% iterate through markers and sum the error
function verifyTrue(truthyStatement, message)
if(~truthyStatement)
error(message);
end
end