16 lines
324 B
Python
16 lines
324 B
Python
|
# -------------------------------
|
||
|
# Difficult Rocket
|
||
|
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
|
||
|
# All rights reserved
|
||
|
# -------------------------------
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class LoggerTest(unittest.TestCase):
|
||
|
def check_a_logger(self, logger):
|
||
|
...
|
||
|
|
||
|
def test_1_py_logger(self):
|
||
|
...
|