Skip to content

Commit 96686c0

Browse files
committed
add sample MATLAB test
1 parent 61b6068 commit 96686c0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

sample/TheTruth.m

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
classdef TheTruth < matlab.unittest.TestCase
2+
methods (Test)
3+
function testTheTestOfAllTime(testCase)
4+
onetyone = 11;
5+
testCase.verifyEqual(onetyone, 11);
6+
end
7+
end
8+
end

0 commit comments

Comments
 (0)