mirror of
https://github.com/izzy2lost/docker-android.git
synced 2026-06-19 01:16:28 -07: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
|