comparison CellTest.m @ 475:e0e81e7df671 feature/sublassable_cellarray

Add test stubs for size and length
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 02 Aug 2017 10:03:59 +0200
parents c91464ef1dd9
children 949ffe238f61
comparison
equal deleted inserted replaced
474:c91464ef1dd9 475:e0e81e7df671
1 function tests = CellTest() 1 function tests = CellTest()
2 tests = functiontests(localfunctions); 2 tests = functiontests(localfunctions);
3 end
4
5 function testSize(testCase)
6 testCase.verifyFail();
7 end
8
9 function testLength(testCase)
10 testCase.verifyFail();
3 end 11 end
4 12
5 function testSubAssignment(testCase) 13 function testSubAssignment(testCase)
6 testCase.verifyFail(); 14 testCase.verifyFail();
7 end 15 end