blob: ca993ab68d552be74e23002afe9e2cb5847ce0e9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from unittest import TestCase
__all__ = [
"TestCase",
"initTest",
]
def initTest(testCaseFile):
from os.path import basename
print("(test case file: %s)" % basename(testCaseFile))
|