Files
Ilya.Kazakevich 22fc6e1716 PY-24770: CleanUp and unify test class detection
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)
2017-07-04 19:32:23 +03:00

5 lines
46 B
Python

def test_test():
pass
def foo():
pass