Files
hpos-desktop/tests/test_class_demo.py
2024-01-21 16:31:03 +05:30

9 lines
177 B
Python

class TestClassDemoInstance:
value = 0
def test_one(self):
self.value = 1
assert self.value == 1
def test_two(self):
assert self.value != 1