def test_satellites(self):
     satellites = load_hisparc_message('test_data/Satellites.txt')
     parse_and_check_data(self, satellites, 6, HiSPARCSatellites, 'SAT')
Ejemplo n.º 2
0
 def test_event(self):
     event = load_hisparc_message('test_data/Event.txt')
     parse_and_check_data(self, event, 1, HiSPARCEvent, 'CIC')
Ejemplo n.º 3
0
 def test_error(self):
     error = load_hisparc_message('test_data/Error.txt')
     parse_and_check_data(self, error, 2, HiSPARCError, 'ERR')
Ejemplo n.º 4
0
 def test_config(self):
     config = load_hisparc_message('test_data/Config_v40.txt')
     parse_and_check_data(self, config, 3, HiSPARCConfig, 'CFG')
 def test_singles(self):
     singles = load_hisparc_message('test_data/Singles.txt')
     parse_and_check_data(self, singles, 5, HiSPARCSingles, 'SIN')
 def test_singles(self):
     comparator = load_hisparc_message('test_data/Comparator.txt')
     parse_and_check_data(self, comparator, 4, HiSPARCComparator, 'CMP')