Changeset 7fb471d in sasview for src/sas/qtgui/Perspectives/Fitting/UnitTesting/FittingWidgetTest.py
- Timestamp:
- Nov 9, 2017 8:41:56 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 4992ff2
- Parents:
- cee5c78
- git-author:
- Piotr Rozyczko <rozyczko@…> (10/27/17 08:49:35)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (11/09/17 08:41:56)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/UnitTesting/FittingWidgetTest.py
- Property mode changed from 100644 to 100755
r9ea43c82 r7fb471d 6 6 from PyQt4 import QtTest 7 7 from PyQt4 import QtCore 8 from mock import MagicMock8 from unittest.mock import MagicMock 9 9 from twisted.internet import threads 10 10 … … 60 60 61 61 #Test loading from json categories 62 category_list = fittingWindow.master_category_dict.keys()62 category_list = list(fittingWindow.master_category_dict.keys()) 63 63 64 64 for category in category_list: … … 93 93 fittingWindow.SASModelToQModel("cylinder") 94 94 pd_index = fittingWindow.lstPoly.model().index(0,0) 95 self.assertEqual(str(pd_index.data() .toString()), "Distribution of radius")95 self.assertEqual(str(pd_index.data()), "Distribution of radius") 96 96 pd_index = fittingWindow.lstPoly.model().index(1,0) 97 self.assertEqual(str(pd_index.data() .toString()), "Distribution of length")97 self.assertEqual(str(pd_index.data()), "Distribution of length") 98 98 99 99 # test the delegate a bit … … 394 394 395 395 # Test presence of comboboxes in last column 396 for row in xrange(self.widget._poly_model.rowCount()):396 for row in range(self.widget._poly_model.rowCount()): 397 397 func_index = self.widget._poly_model.index(row, 6) 398 398 self.assertTrue(isinstance(self.widget.lstPoly.indexWidget(func_index), QtGui.QComboBox)) … … 542 542 543 543 # Test rows 544 for row in xrange(self.widget._magnet_model.rowCount()):544 for row in range(self.widget._magnet_model.rowCount()): 545 545 func_index = self.widget._magnet_model.index(row, 0) 546 546 self.assertIn(':', self.widget._magnet_model.item(row, 0).text()) … … 981 981 982 982 # check that range of variation for this parameter has NOT been changed 983 print self.widget.kernel_module.details[name_modified_param]983 print(self.widget.kernel_module.details[name_modified_param]) 984 984 self.assertNotIn(new_value, self.widget.kernel_module.details[name_modified_param] ) 985 985
Note: See TracChangeset
for help on using the changeset viewer.