We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea0605a commit 230c86cCopy full SHA for 230c86c
test/TestNormalize.m
@@ -8,11 +8,13 @@
8
9
methods (Test)
10
function test_normalize(tc, p)
11
-tc.verifyEqual(stdlib.normalize(p{1}), p{2})
+tc.verifyEqual(stdlib.normalize(p{1}), p{2}, ...
12
+ sprintf("normalize(%s) mex: ", p{1}, stdlib.is_mex_fun("stdlib.normalize")))
13
end
14
15
function test_drop_slash(tc, d)
-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")))
18
19
20
0 commit comments