Commit 9905fb8e authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Add a test for the top grid.

Add a test for this table.  Since the top grid is empty, this test is also
always empty.  Yay!
parent 855f8f41
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -20,6 +20,10 @@ classdef ConversionTest1 < BaseConversionTest
            testcase.assertEqual(outVar.size(), 1);
            testcase.assertEqual(char(outVar.get('output').name()), 'output');
        end

        function testTopGridConversion(testcase)
            testcase.assertEqual(testcase.ConvertedTable.getTopGrid().getSubHierarchy().size(), 0)
        end
    end
end