def testGetFormatStringAttributeNames(self): """Tests the GetFormatStringAttributeNames function.""" event_formatter = winevtx.WinEVTXFormatter() expected_attribute_names = [ 'event_identifier', 'record_number', 'event_level', 'source_name', 'computer_name', 'message_string', 'strings' ] self._TestGetFormatStringAttributeNames(event_formatter, expected_attribute_names)
def testInitialization(self): """Tests the initialization.""" event_formatter = winevtx.WinEVTXFormatter() self.assertIsNotNone(event_formatter)