mirror of
https://github.com/Tencent/Metis.git
synced 2025-12-25 19:52:49 +00:00
10 lines
158 B
Python
10 lines
158 B
Python
class TestClass:
|
|
|
|
def test_one(self):
|
|
x = "this"
|
|
assert 'h' in x
|
|
|
|
def test_two(self):
|
|
x = "hello"
|
|
assert 'hello' in x
|