Files
2026-07-13 12:31:34 +08:00

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'