tor-browser

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

unit_test.py (255B)


      1 from unittest import TestCase  # noqa: F401
      2 
      3 
      4 for i in range(15000):
      5    exec(
      6        f"""
      7 class Test{i}(TestCase):
      8    @classmethod
      9    def setUpClass(cls): pass
     10    def test_1(self): pass
     11    def test_2(self): pass
     12    def test_3(self): pass
     13 """
     14    )