Mercurial > repos > public > sbplib
comparison assertStructFields.m @ 832:5573913a0949 feature/burgers1d
Merged with default, and updated +scheme/Burgers1D accordingly
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Tue, 11 Sep 2018 15:58:35 +0200 |
parents | c596122374df |
children |
comparison
equal
deleted
inserted
replaced
831:d0934d1143b7 | 832:5573913a0949 |
---|---|
1 % Assert that the struct s has the all the field names in the cell array fns. | |
2 function assertStructFields(s, fns) | |
3 assertType(s, 'struct'); | |
4 assertType(fns, 'cell'); | |
5 | |
6 ok = ismember(fns, fieldnames(s)); | |
7 if ~all(ok) | |
8 str1 = sprintf("'%s' must have the fields %s\n", inputname(1), toString(fns)); | |
9 str2 = sprintf("The following fields are missing: %s", toString(fns(~ok))); | |
10 error(str1 + str2); | |
11 end | |
12 end |