source: sasview/src/sas/qtgui/UnitTesting/WindowTitleTest.py @ 27313b7

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 27313b7 was 27313b7, checked in by Piotr Rozyczko <rozyczko@…>, 7 years ago

Added window title GUI for charts

  • Property mode set to 100755
File size: 1.3 KB
Line 
1import sys
2import unittest
3
4from PyQt4 import QtGui
5
6# set up import paths
7import path_prepare
8
9# Local
10from WindowTitle import WindowTitle
11
12app = QtGui.QApplication(sys.argv)
13
14class WindowTitleTest(unittest.TestCase):
15    '''Test the WindowTitle'''
16    def setUp(self):
17        '''Create the WindowTitle'''
18        self.widget = WindowTitle(None, new_title="some title")
19
20    def tearDown(self):
21        '''Destroy the GUI'''
22        self.widget.close()
23        self.widget = None
24
25    def testDefaults(self):
26        '''Test the GUI in its default state'''
27        self.widget.show()
28        self.assertIsInstance(self.widget, QtGui.QDialog)
29        self.assertEqual(self.widget.windowTitle(), "Modify Window Title")
30       
31    def testTitle(self):
32        '''Modify the title'''
33        self.widget.show()
34        app.processEvents()
35        # make sure we have the pre-set title
36        self.assertEqual(self.widget.txtTitle.text(), "some title")
37        # Clear the control and set it to something else
38        self.widget.txtTitle.clear()
39        self.widget.txtTitle.setText("5 elephants")
40        # Retrieve value
41        new_title = self.widget.title()
42        # Check
43        self.assertEqual(new_title, "5 elephants")
44       
45if __name__ == "__main__":
46    unittest.main()
Note: See TracBrowser for help on using the repository browser.