ddos-script/simple_ddos/tests/test_running_ddos.py

11 lines
194 B
Python
Raw Normal View History

2023-11-07 23:46:00 -05:00
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()