From: ageay Date: Thu, 21 Jun 2012 12:07:00 +0000 (+0000) Subject: API modification of MEDCouplingUMesh::findCellsIdsOnBoundary X-Git-Tag: V6_main_FINAL~633 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=657b63f2c06ea584d072fa26bc17ac097d807a91;p=tools%2Fmedcoupling.git API modification of MEDCouplingUMesh::findCellsIdsOnBoundary --- diff --git a/src/MEDCoupling/Test/MEDCouplingBasicsTest4.cxx b/src/MEDCoupling/Test/MEDCouplingBasicsTest4.cxx index be97db389..4c5256e54 100644 --- a/src/MEDCoupling/Test/MEDCouplingBasicsTest4.cxx +++ b/src/MEDCoupling/Test/MEDCouplingBasicsTest4.cxx @@ -233,10 +233,10 @@ void MEDCouplingBasicsTest4::testUMeshGetCellIdsLyingOnNodes1() m->decrRef(); } -void MEDCouplingBasicsTest4::testUMeshFindCellsIdsOnBoundary1() +void MEDCouplingBasicsTest4::testUMeshFindCellIdsOnBoundary1() { MEDCouplingUMesh *m=build3DSurfTargetMesh_1(); - DataArrayInt *da5=m->findCellsIdsOnBoundary(); + DataArrayInt *da5=m->findCellIdsOnBoundary(); CPPUNIT_ASSERT_EQUAL(5,da5->getNumberOfTuples()); CPPUNIT_ASSERT(da5->isIdentity()); // diff --git a/src/MEDCoupling/Test/MEDCouplingBasicsTest4.hxx b/src/MEDCoupling/Test/MEDCouplingBasicsTest4.hxx index e8ad9fcbc..f1eb2c0c7 100644 --- a/src/MEDCoupling/Test/MEDCouplingBasicsTest4.hxx +++ b/src/MEDCoupling/Test/MEDCouplingBasicsTest4.hxx @@ -41,7 +41,7 @@ namespace ParaMEDMEM CPPUNIT_TEST( testDAICheckAndPreparePermutation1 ); CPPUNIT_TEST( testDAIChangeSurjectiveFormat1 ); CPPUNIT_TEST( testUMeshGetCellIdsLyingOnNodes1 ); - CPPUNIT_TEST( testUMeshFindCellsIdsOnBoundary1 ); + CPPUNIT_TEST( testUMeshFindCellIdsOnBoundary1 ); CPPUNIT_TEST( testMeshSetTime1 ); CPPUNIT_TEST( testApplyFuncTwo1 ); CPPUNIT_TEST( testApplyFuncThree1 ); @@ -101,7 +101,7 @@ namespace ParaMEDMEM void testDAICheckAndPreparePermutation1(); void testDAIChangeSurjectiveFormat1(); void testUMeshGetCellIdsLyingOnNodes1(); - void testUMeshFindCellsIdsOnBoundary1(); + void testUMeshFindCellIdsOnBoundary1(); void testMeshSetTime1(); void testApplyFuncTwo1(); void testApplyFuncThree1();