Ignore:
Timestamp:
Nov 9, 2017 8:45:20 AM (6 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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:
dd150ef
Parents:
d6b8a1d
git-author:
Piotr Rozyczko <rozyczko@…> (11/08/17 09:22:45)
git-committer:
Piotr Rozyczko <rozyczko@…> (11/09/17 08:45:20)
Message:

Converted unit tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/UnitTesting/FittingPerspectiveTest.py

    r7fb471d r53c771e  
    33import webbrowser 
    44 
    5 from PyQt4 import QtGui 
    6 from PyQt4 import QtTest 
    7 from PyQt4 import QtCore 
     5from PyQt5 import QtGui 
     6from PyQt5 import QtWidgets 
     7from PyQt5 import QtTest 
     8from PyQt5 import QtCore 
    89from unittest.mock import MagicMock 
    910 
     
    1617from sas.qtgui.Perspectives.Fitting.FittingPerspective import FittingWindow 
    1718 
    18 if not QtGui.QApplication.instance(): 
    19     app = QtGui.QApplication(sys.argv) 
     19if not QtWidgets.QApplication.instance(): 
     20    app = QtWidgets.QApplication(sys.argv) 
    2021 
    2122class FittingPerspectiveTest(unittest.TestCase): 
     
    3839    def testDefaults(self): 
    3940        '''Test the GUI in its default state''' 
    40         self.assertIsInstance(self.widget, QtGui.QWidget) 
     41        self.assertIsInstance(self.widget, QtWidgets.QWidget) 
    4142        self.assertIn("Fit panel", self.widget.windowTitle()) 
    4243        self.assertEqual(self.widget.optimizer, "Levenberg-Marquardt") 
Note: See TracChangeset for help on using the changeset viewer.