comparison +multiblock/DiffOpTest.m @ 200:ef41fde95ac4 feature/beams

Merged feature/grids into feature/beams.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 13 Jun 2016 16:59:02 +0200
parents 6054dcd3c8a9
children 38f203f00f3a
comparison
equal deleted inserted replaced
181:419ec303e97d 200:ef41fde95ac4
1 function tests = DiffOpTest()
2 tests = functiontests(localfunctions);
3 end
4
5 function testCreation(testCase)
6 g = multiblock.Grid({},{});
7 doHand = @(grid,order)[];
8 order = 0;
9 do = multiblock.DiffOp(doHand, g, order);
10 end
11
12 function testMissing(testCase)
13 testCase.verifyFail();
14 end
15
16
17 % function do = mockDiffOp()
18 % do.H = 1;
19 % do.D = 1;
20 % end