28 lines
737 B
Python
28 lines
737 B
Python
"""
|
|
UI Test Suite - Test Modules
|
|
|
|
Individual test modules for each UI component.
|
|
"""
|
|
|
|
from .overlay_tests import OverlayWindowTests
|
|
from .activity_bar_tests import ActivityBarTests
|
|
from .widget_tests import WidgetSystemTests
|
|
from .settings_tests import SettingsUITests
|
|
from .plugin_store_tests import PluginStoreTests
|
|
from .theme_tests import ThemeStylingTests
|
|
from .user_flow_tests import UserFlowTests
|
|
from .accessibility_tests import AccessibilityTests
|
|
from .performance_tests import PerformanceTests
|
|
|
|
__all__ = [
|
|
'OverlayWindowTests',
|
|
'ActivityBarTests',
|
|
'WidgetSystemTests',
|
|
'SettingsUITests',
|
|
'PluginStoreTests',
|
|
'ThemeStylingTests',
|
|
'UserFlowTests',
|
|
'AccessibilityTests',
|
|
'PerformanceTests',
|
|
]
|