tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

xunit.py (199B)


      1 for i in range(5000):
      2    exec(
      3        f"""
      4 class Test{i}:
      5    @classmethod
      6    def setup_class(cls): pass
      7    def test_1(self): pass
      8    def test_2(self): pass
      9    def test_3(self): pass
     10 """
     11    )