blob: 9163f9057ce02daa4cb812ae7ec559c6de0de4a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from __future__ import division, absolute_import, print_function, unicode_literals
from unittest import TestCase
__all__ = [
"TestCase",
"initTest",
]
def initTest(testCaseFile):
from os.path import basename
print("(test case file: %s)" % basename(testCaseFile))
# Run code coverage metrics, if enabled.
import awlsim_loader.coverage_helper
|