11 lines
145 B
Python
Raw Normal View History

2024-08-13 12:31:45 +02:00
class TestData:
def __init__(self):
self.test_name = None
self.steps = []
self.error = []
test_data = TestData()