123456789101112131415161718192021222324252627 |
- import unittest
- import unittest.mock as mock
- from Test.GenericTest import GenericTest
- from Test.Lib import test_pcap_ips
- sha_default = 'fa9a43a8b6eb959f25cf3306c9b94b0957027d91b61edd2c9906a135b814f148'
- """
- CURRENT COVERAGE
- Name Stmts Miss Cover Missing (lines)
- ---------------------------------------------------------------------------
- Attack/SQLiAttack.py 159 5 97% 62, 71, 113, 120, 245
- """
- class UnitTestSQLi(GenericTest):
- def test_default(self):
-
- self.generic_test([['SQLiAttack']], sha_default)
- if __name__ == '__main__':
- unittest.main()
|