mirror of
https://github.com/budtmo/docker-android.git
synced 2026-07-31 04:07:25 +00:00
10 lines
146 B
Python
10 lines
146 B
Python
from unittest import TestCase
|
|
|
|
|
|
class BaseTest(TestCase):
|
|
def setUp(self) -> None:
|
|
pass
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|