annotate CellTest.m @ 472:1dcac646c514
feature/sublassable_cellarray
Add some missing semicolon
author |
Jonatan Werpers <jonatan@werpers.com> |
date |
Wed, 02 Aug 2017 09:34:26 +0200 |
parents |
c78249d8e915 |
children |
c91464ef1dd9 |
rev |
line source |
471
|
1 function tests = CellTest()
|
|
2 tests = functiontests(localfunctions);
|
|
3 end
|
|
4
|
|
5 function testSubAssignment(testCase)
|
|
6 testCase.verifyFail();
|
|
7 end
|
|
8
|
|
9 function testIndexreference(testCase)
|
|
10 testCase.verifyFail();
|
|
11 end
|
|
12
|
|
13 function testConcat(testCase)
|
|
14 testCase.verifyFail();
|
|
15 end
|