Files
hpos-data/tests/test_class_demo.py
Pritimay Sarkar 0449c0cf9e add test class
2024-01-17 15:39:23 +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