Salome HOME
- Deleted Study as an input parameter and class field.
[modules/kernel.git] / src / SALOMEDS / Test / SALOMEDSTest_AttributeIOR.cxx
index 25660a648113370a74a157ba09a2219e197b558a..101af8f73f4affd8c323fa77f0c6affe613146e5 100755 (executable)
  */
 void SALOMEDSTest::testAttributeIOR()
 {
-  //Create or find the Study manager
-  _PTR(StudyManager) sm ( new SALOMEDS_StudyManager(_sm) );
-
-  CPPUNIT_ASSERT(sm);
-
-  //Create a new study
-  _PTR(Study) study = sm->NewStudy("Test");
+  //Create Study
+  _PTR(Study) study(new SALOMEDS_Study(_study));
 
   CPPUNIT_ASSERT(study);
 
@@ -57,14 +52,14 @@ void SALOMEDSTest::testAttributeIOR()
 
   CPPUNIT_ASSERT(value.empty());
 
-  std::string ior = _orb->object_to_string(_sm);
+  std::string ior = _orb->object_to_string(_study);
 
   //Check method SetValue
   _attr->SetValue(ior);
 
   CPPUNIT_ASSERT(ior == _attr->Value());
 
-  sm->Close(study);
+  study->Clear();
 }