source: sasview/src/sas/qtgui/GUITests.py @ 092a3d9

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 092a3d9 was 092a3d9, checked in by Piotr Rozyczko <rozyczko@…>, 7 years ago

Color Map control for 2D charts. Initial commit - SASVIEW-391

  • Property mode set to 100644
File size: 2.8 KB
Line 
1import unittest
2
3from UnitTesting import AboutBoxTest
4from UnitTesting import AddTextTest
5from UnitTesting import DataExplorerTest
6from UnitTesting import WelcomePanelTest
7from UnitTesting import DroppableDataLoadWidgetTest
8from UnitTesting import GuiManagerTest
9from UnitTesting import GuiUtilsTest
10from UnitTesting import MainWindowTest
11from UnitTesting import TestUtilsTest
12from UnitTesting import PlotHelperTest
13from UnitTesting import PlotterBaseTest
14from UnitTesting import PlotterTest
15from UnitTesting import Plotter2DTest
16from UnitTesting import SasviewLoggerTest
17from UnitTesting import ScalePropertiesTest
18from UnitTesting import KiessigCalculatorTest
19from UnitTesting import DensityCalculatorTest
20from UnitTesting import WindowTitleTest
21from UnitTesting import SetGraphRangeTest
22from UnitTesting import LinearFitTest
23from UnitTesting import PlotPropertiesTest
24from UnitTesting import PlotUtilitiesTest
25from UnitTesting import ColorMapTest
26
27def suite():
28    suites = (
29        unittest.makeSuite(AboutBoxTest.AboutBoxTest,          'test'),
30        unittest.makeSuite(AddTextTest.AddTextTest,          'test'),
31        unittest.makeSuite(DataExplorerTest.DataExplorerTest,  'test'),
32        unittest.makeSuite(WelcomePanelTest.WelcomePanelTest,  'test'),
33        unittest.makeSuite(DroppableDataLoadWidgetTest.DroppableDataLoadWidgetTest, 'test'),
34        unittest.makeSuite(GuiManagerTest.GuiManagerTest,      'test'),
35        unittest.makeSuite(GuiUtilsTest.GuiUtilsTest,          'test'),
36        unittest.makeSuite(MainWindowTest.MainWindowTest,      'test'),
37        unittest.makeSuite(TestUtilsTest.TestUtilsTest,        'test'),
38        unittest.makeSuite(PlotHelperTest.PlotHelperTest,       'test'),
39        unittest.makeSuite(PlotterBaseTest.PlotterBaseTest,     'test'),
40        unittest.makeSuite(PlotterTest.PlotterTest,          'test'),
41        unittest.makeSuite(Plotter2DTest.Plotter2DTest,        'test'),
42        unittest.makeSuite(SasviewLoggerTest.SasviewLoggerTest,    'test'),
43        unittest.makeSuite(ScalePropertiesTest.ScalePropertiesTest,  'test'),
44        unittest.makeSuite(KiessigCalculatorTest.KiessigCalculatorTest, 'test'),
45        unittest.makeSuite(DensityCalculatorTest.DensityCalculatorTest, 'test'),
46        unittest.makeSuite(WindowTitleTest.WindowTitleTest, 'test'),
47        unittest.makeSuite(SetGraphRangeTest.SetGraphRangeTest, 'test'),
48        unittest.makeSuite(LinearFitTest.LinearFitTest, 'test'),
49        unittest.makeSuite(PlotPropertiesTest.PlotPropertiesTest, 'test'),
50        unittest.makeSuite(PlotUtilitiesTest.PlotUtilitiesTest, 'test'),
51        unittest.makeSuite(ColorMapTest.ColorMapTest, 'test'),
52    )
53    return unittest.TestSuite(suites)
54
55if __name__ == "__main__":
56    unittest.main(defaultTest="suite")
57
Note: See TracBrowser for help on using the repository browser.