Coverage for htmlframework/tests/test_myModule : 38%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
## SETUP AND TEARDOWN FIXTURE FUNCTIONS FOR THE ENTIRE MODULE "set up test fixtures" moduleDirectory = os.path.dirname(__file__)
# SETUP PATHS TO COMMONG DIRECTORIES FOR TEST DATA global pathToInputDataDir, pathToOutputDir, pathToOutputDataDir pathToInputDataDir = moduleDirectory+"/input/data/" pathToOutputDir = moduleDirectory+"/output/" pathToOutputDataDir = pathToOutputDir+"data/"
# SETUP THE TEST LOG FILE global testlog testlog = open(pathToOutputDir + "tests.log", 'w')
return None
"tear down test fixtures" # CLOSE THE TEST LOG FILE testlog.close() return None
## SETUP AND TEARDOWN FIXTURE FUNCTIONS "set up the test fixtures"
return None
"tear down the test fixtures"
return None |