]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Updated test cases
authorsrn <srn@opencascade.com>
Mon, 18 Dec 2006 08:56:21 +0000 (08:56 +0000)
committersrn <srn@opencascade.com>
Mon, 18 Dec 2006 08:56:21 +0000 (08:56 +0000)
src/SALOMEDS/Test/SALOMEDSTest_AttributeTableOfInteger.cxx

index e633bc5b3257e12aa0c98069952710b711c6d23c..7545fb7200fe6f2a9ee42b96d0e2bfe08d4bbe20 100755 (executable)
@@ -49,7 +49,7 @@ void SALOMEDSTest::testAttributeTableOfInteger()
 
   //Check the attribute creation
   CPPUNIT_ASSERT(_attr);
-/*
+
   //Check method SetTitle
   _attr->SetTitle("Table_1");
 
@@ -86,10 +86,10 @@ void SALOMEDSTest::testAttributeTableOfInteger()
   vector<int> rs = _attr->GetRowSetIndices(1);
 
   CPPUNIT_ASSERT(rs.size() == 1 && rs[0] == 1);
-*/
+
   _attr->PutValue(32, 2,2);
   CPPUNIT_ASSERT(_attr->HasValue(2, 2));
-/*
+
   vector<string> rowTitles;
   rowTitles.push_back("title1");
   rowTitles.push_back("title2");
@@ -120,7 +120,6 @@ void SALOMEDSTest::testAttributeTableOfInteger()
 
 
   CPPUNIT_ASSERT(ct.size() == 2 && ct[0] == "new_title" && ct[1] == "title2");
-*/
 
   vector<string> rowUnits;
   rowUnits.push_back("unit1");
@@ -129,8 +128,6 @@ void SALOMEDSTest::testAttributeTableOfInteger()
   //Check method SetRowUnits
   _attr->SetRowUnits(rowUnits);
 
-/*
-
   //Check method SetRowUnit
   _attr->SetRowUnit(1, "new_unit");
 
@@ -185,7 +182,7 @@ void SALOMEDSTest::testAttributeTableOfInteger()
   data2 = _attr->GetColumn(3);
 
   CPPUNIT_ASSERT(data2.size() == 3 && data2[0] == 11 && data2[1] == -22 && data2[2] == -33);
-*/
+
   sm->Close(study);
 }