12 lines
199 B
Python
12 lines
199 B
Python
|
for i in range(5000):
|
||
|
exec(
|
||
|
f"""
|
||
|
class Test{i}:
|
||
|
@classmethod
|
||
|
def setup_class(cls): pass
|
||
|
def test_1(self): pass
|
||
|
def test_2(self): pass
|
||
|
def test_3(self): pass
|
||
|
"""
|
||
|
)
|