summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/third_party/pytest/bench/xunit.py
blob: 3a77dcdce4250d396607c55515b3b70173300042 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
"""
    )