mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
PythonUnitTestUtil been refactored, see its doc. Code that is not test-case specific moved to PyClassExt.kt New logic is the following: * UnitTest believes any TestCase inheritor is test case, so its method is test, its parent file is test and so on. * Other runners think that any "test_" function is test when it is located on toplevel or in test class (see PythonUnitTestUtil)
5 lines
46 B
Python
5 lines
46 B
Python
def test_test():
|
|
pass
|
|
|
|
def foo():
|
|
pass |