test.py

来自「Dolfin provide a high-performance linear」· Python 代码 · 共 19 行

PY
19
字号
"""Unit tests for the function library"""__author__ = "Anders Logg (logg@simula.no)"__date__ = "2007-05-24 -- 2007-05-24"__copyright__ = "Copyright (C) 2007 Anders Logg"__license__  = "GNU LGPL Version 2.1"import unittestfrom dolfin import *class Foo(unittest.TestCase):     def testFoo(self):         """No tests implemented"""         self.assertEqual(0, 0)if __name__ == "__main__":    unittest.main()

⌨️ 快捷键说明

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