diff +multiblock/GridTest.m @ 198:6fb354955c37 feature/grids

Paused work on boundaryGroups and getBoundaryNames. Are they really needed?
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 13 Jun 2016 16:49:11 +0200
parents 6054dcd3c8a9
children
line wrap: on
line diff
--- a/+multiblock/GridTest.m	Wed Apr 06 12:54:52 2016 +0200
+++ b/+multiblock/GridTest.m	Mon Jun 13 16:49:11 2016 +0200
@@ -11,9 +11,27 @@
 end
 
 function testGetBoundaryNames(testCase)
+    [grids, conn] = prepareAdjecentBlocks();
+
+    mbg = multiblock.Grid(grids, conn, multiblock.BoundaryGroup({1,'w'},{2,'w'}) );
+
     testCase.verifyFail();
 end
 
 function testGetBoundary(testCase)
+    [grids, conn] = prepareAdjecentBlocks();
+
+    mbg = multiblock.Grid(grids, conn, multiblock.BoundaryGroup({1,'w'},{2,'w'}) );
     testCase.verifyFail();
+end
+
+
+function [grids, conn] = prepareAdjecentBlocks()
+    grids = {
+        grid.Cartesian([0 1 2], [3 4 5]);
+        grid.Cartesian([1 2], [10 20]);
+    };
+
+    conn = cell(2,2);
+    conn{1, 2} = {'s','n'};
 end
\ No newline at end of file