#!/usr/bin/env python31#2# -*- coding: utf-8 -*-3# This program is free software; you can redistribute it and/or modify4# it under the terms of the GNU General Public License as published by5# the Free Software Foundation; either version 2 of the License, or6# (at your option) any later version.7#8# This program is distributed in the hope that it will be useful,9# but WITHOUT ANY WARRANTY; without even the implied warranty of10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11# GNU General Public License for more details.12#13# You should have received a copy of the GNU General Public License14# along with this program; if not, write to the Free Software15# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,16# MA 02110-1301, USA.17#18# Author: Mauro Soria1920import unittest2122from tests.connection.test_dns import TestDNS # noqa: F40123from tests.core.test_scanner import TestScanner # noqa: F40124from tests.parse.test_config import TestConfigParser # noqa: F40125from tests.parse.test_headers import TestHeadersParser # noqa: F40126from tests.parse.test_url import TestURLParsers # noqa: F40127from tests.utils.test_common import TestCommonUtils # noqa: F40128from tests.utils.test_crawl import TestCrawl # noqa: F40129from tests.utils.test_diff import TestDiff # noqa: F40130from tests.utils.test_mimetype import TestMimeTypeUtils # noqa: F40131from tests.utils.test_random import TestRandom # noqa: F40132from tests.utils.test_schemedet import TestSchemedet # noqa: F401333435if __name__ == "__main__":36unittest.main()373839