source: sasview/src/sas/qtgui/UnitTesting/DroppableDataLoadWidgetTest.py @ f82ab8c

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 f82ab8c was f82ab8c, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 8 years ago

More dialogs, drag and drop onto File Load

  • Property mode set to 100755
File size: 460 bytes
Line 
1import sys
2import unittest
3
4from PyQt4.QtGui import QApplication
5from PyQt4.QtTest import QTest
6from PyQt4.QtCore import Qt
7from DroppableDataLoadWidget import DroppableDataLoadWidget
8
9app = QApplication(sys.argv)
10
11class DroppableDataLoadWidgetTest(unittest.TestCase):
12    '''Test the DroppableDataLoadWidget GUI'''
13    def setUp(self):
14        '''Create the GUI'''
15        self.form = DroppableDataLoadWidget()
16
17if __name__ == "__main__":
18    unittest.main()
Note: See TracBrowser for help on using the repository browser.