Salome HOME
refs #550: fix crash when myObject is NULL
[modules/hydro.git] / src / HYDROGUI / test_HYDROGUI_ListModel.cxx
index f3c76ed0e2c2e82fdac36578d4d62402b0771bf1..f5b0ea490545d68e8470833e3bb8d10971c6341c 100644 (file)
@@ -1,3 +1,20 @@
+// Copyright (C) 2014-2015  EDF-R&D
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #undef HYDROGUI_EXPORTS
 
@@ -361,8 +378,8 @@ void test_HYDROGUI_ListModel::testDragAndDrop()
   CPPUNIT_ASSERT_EQUAL( false, aRes );
   CPPUNIT_ASSERT_EQUAL( anInitialState, GetObjects( aModel ) );
 
-  // 7. [D, *E, *G] -> -1 : drop item index is out of range ( more than than (list length - 1) )
-  aRes = aModel->move( QList<int>() << 3 << 4 << 6, aDnD, false, 8 );
+  // 7. [D, *E, *G] -> -1 : drop item index is out of range ( more than than list length )
+  aRes = aModel->move( QList<int>() << 3 << 4 << 6, aDnD, false, 9 );
   CPPUNIT_ASSERT_EQUAL( false, aRes );
   CPPUNIT_ASSERT_EQUAL( anInitialState, GetObjects( aModel ) );