⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 runtests.py

📁 在Linux下做的QuadTree的程序
💻 PY
字号:
# $Id: runtests.py 1820 2006-09-06 16:54:23Z mloskot $# ===========================================================================# Copyright 2004 Sean Gillies, sgillies@frii.com## This is free software; you can redistribute and/or modify it under# the terms of the GNU Lesser General Public Licence as published# by the Free Software Foundation. # See the COPYING file for more information.# ===========================================================================## Execute this module as a script from PyGEOS##     python tests/runtests.py -v## ===========================================================================import unittest# Import test casesfrom test_geometry import TestGeometry# Create a test suitesuite = unittest.TestSuite()# Add tests to the suitesuite.addTest(TestGeometry)# If module is run as a script, execute every test case in the suiteif __name__ == '__main__':    unittest.main()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -