def test_event(self):
     event = load_hisparc_message('test_data/Event.txt')
     parse_and_check_data(self, event, 1, HiSPARCEvent, 'CIC')
 def test_satellites(self):
     satellites = load_hisparc_message('test_data/Satellites.txt')
     parse_and_check_data(self, satellites, 6, HiSPARCSatellites, 'SAT')
 def test_error(self):
     error = load_hisparc_message('test_data/Error.txt')
     parse_and_check_data(self, error, 2, HiSPARCError, 'ERR')
 def test_error(self):
     error = load_weather_message('test_data/WeatherError.txt')
     parse_and_check_data(self, error, 17, WeatherError, 'WER')
 def test_event(self):
     event = load_weather_message("test_data/WeatherEvent.txt")
     parse_and_check_data(self, event, 16, WeatherEvent, "WTR")
 def test_config(self):
     config = load_hisparc_message('test_data/Config_v40.txt')
     parse_and_check_data(self, config, 3, HiSPARCConfig, 'CFG')
 def test_config(self):
     config = load_weather_message("test_data/WeatherConfig.txt")
     parse_and_check_data(self, config, 18, WeatherConfig, "WCG")
 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')