Skip to content

Commit 230c86c

Browse files
committed
test:normalize: tell if mex used
1 parent ea0605a commit 230c86c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/TestNormalize.m

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88

99
methods (Test)
1010
function test_normalize(tc, p)
11-
tc.verifyEqual(stdlib.normalize(p{1}), p{2})
11+
tc.verifyEqual(stdlib.normalize(p{1}), p{2}, ...
12+
sprintf("normalize(%s) mex: ", p{1}, stdlib.is_mex_fun("stdlib.normalize")))
1213
end
1314

1415
function test_drop_slash(tc, d)
15-
tc.verifyEqual(stdlib.drop_slash(d{1}), d{2})
16+
tc.verifyEqual(stdlib.drop_slash(d{1}), d{2}, ...
17+
sprintf("drop_slash(%s) mex: ", d{1}, stdlib.is_mex_fun("stdlib.drop_slash")))
1618
end
1719

1820
end

0 commit comments

Comments
 (0)