TEUCHOS_UNIT_TEST(Teuchos_TwoDArrays, emptyTest){ TwoDArray<int> emptyArray; TEST_EQUALITY_CONST(emptyArray.getNumRows(), 0) TEST_EQUALITY_CONST(emptyArray.getNumCols(), 0) TEST_EQUALITY_CONST(emptyArray.getDataArray().size(), 0) TEST_ASSERT(emptyArray.isEmpty()); }
TEUCHOS_UNIT_TEST(Teuchos_TwoDArray, clearTest){ TwoDArray<int> simpleArray = getSimpleTestTwoDArray(); simpleArray.clear(); TEST_ASSERT(simpleArray.isEmpty()); }