13 lines
206 B
Python
13 lines
206 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
@File : test_hello.py
|
|
@Date : 2024-01-21
|
|
@Author : Peng Shiyu
|
|
"""
|
|
import unittest
|
|
|
|
|
|
class HelloTest(unittest.TestCase):
|
|
def test_hi(self):
|
|
assert 'hi' == 'hi'
|