9 lines
105 B
Python
9 lines
105 B
Python
|
|
||
|
|
||
|
class TestData(object):
|
||
|
|
||
|
def __init__(self):
|
||
|
self.test_name = None
|
||
|
|
||
|
test_data = TestData()
|