You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
24 lines
613 B
Python
24 lines
613 B
Python
"""
|
|
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
|
|
pass
|
|
"""
|
|
|
|
from .graphical_test_base import GraphicalTestBase
|
|
from .keyboard_test_base import KeyboardTestBase
|
|
|
|
__all__ = [
|
|
'GraphicalTestBase',
|
|
'KeyboardTestBase',
|
|
]
|