forked from MicroPythonOS/MicroPythonOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
24 lines (19 loc) · 661 Bytes
/
__init__.py
File metadata and controls
24 lines (19 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
Base test classes for MicroPythonOS testing.
This module provides base classes that encapsulate common test patterns:
- GraphicalTestBase: For tests that require LVGL/UI
- KeyboardTestBase: For tests that involve keyboard interaction
Usage:
from base import GraphicalTestBase, KeyboardTestBase
class TestMyApp(GraphicalTestBase):
def test_something(self):
# self.screen is already set up
# self.screenshot_dir is configured
pass
"""
from .graphical_test_base import GraphicalTestBase
from .keyboard_test_base import KeyboardTestBase
__all__ = [
'GraphicalTestBase',
'KeyboardTestBase',
]