Salome HOME
updated copyright message
[modules/kernel.git] / src / SALOMEDS / Test / SALOMEDSTest_AttributeComment.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 6c93cd6..48f9a27
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
  * Use code of SALOMEDS_AttributeComment.cxx
  */
 
+//#include "Basics_Utils.hxx"
+
 void SALOMEDSTest::testAttributeComment()
 {
-  //Create or find the Study manager
-  _PTR(StudyManager) sm(new SALOMEDS_StudyManager(_sm));
-
-  CPPUNIT_ASSERT(sm);
-
-  //Create a new study
-  std::vector<std::string> ost(sm->GetOpenStudies());
-  _PTR(Study) study;
-  if(ost.empty())
-    study = sm->NewStudy("Test");
-  else
-    study = sm->GetStudyByName(ost[0]);
+  //Create Study
+  _PTR(Study) study(new SALOMEDS_Study(_study));
 
   CPPUNIT_ASSERT(study);
 
@@ -73,8 +65,7 @@ void SALOMEDSTest::testAttributeComment()
   _attr->SetValue("");
   CPPUNIT_ASSERT(_attr->Value() == "");
 
-
-  sm->Close(study);
+  study->Clear();
 }