From: wolf Date: Thu, 5 Sep 2002 14:27:47 +0000 (+0000) Subject: Check something more. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e549fc0c99dfa24108e369d3d7a6d3262d23779;p=dealii-svn.git Check something more. git-svn-id: https://svn.dealii.org/trunk@6360 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/table.cc b/tests/base/table.cc index 1e5e4b2028..306f3de3c7 100644 --- a/tests/base/table.cc +++ b/tests/base/table.cc @@ -97,6 +97,10 @@ main () logfile << i << " " << j << " " << Td[i][j] << " ok" << std::endl; }; + + for (unsigned int i=0; i<4; ++i) + Assert (Td[i].end() - Td[i].begin() == 3, + ExcInternalError()); }; @@ -157,6 +161,12 @@ main () logfile << i << " " << j << " " << k << " " << Td[i][j][k] << " ok" << std::endl; }; + + for (unsigned int i=0; i(K), + ExcInternalError()); }; };