Coverage for dryxPython.tests.test_fitstools : 100%

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"
# SETUP THE TEST LOG FILE global testlog
# SETUP PATHS TO COMMONG DIRECTORIES FOR TEST DATA global pathToInputDataDir, pathToOutputDir, pathToOutputDataDir
"tear down test fixtures" # CLOSE THE TEST LOG FILE
## SETUP AND TEARDOWN FIXTURE FUNCTIONS FOR THE ENTIRE MODULE "set up the test fixtures"
global fitsFilePath
"tear down the test fixtures"
# class TestUM:
# def setup(self): # print ("TestUM:setup() before each test method")
# def teardown(self): # print ("TestUM:teardown() after each test method")
# @classmethod # def setup_class(cls): # print ("setup_class() before any methods in this class")
# @classmethod # def teardown_class(cls): # print ("teardown_class() after any methods in this class")
# def test_numbers_5_6(self): # print 'test_numbers_5_6() <============================ actual test code' # assert 1 + 1 == 2
# def test_strings_b_2(self): # print 'test_strings_b_2() <============================ actual test code' # assert 1 + 1 == 2
def test_convert_fits_header_to_dictionary(): "a function to test convert_fits_header_to_dictionary" # testlog.write(fitsFilePath)
|