Ejemplo n.º 1
0
    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)
Ejemplo n.º 2
0
 def testInitialization(self):
     """Tests the initialization."""
     event_formatter = winevtx.WinEVTXFormatter()
     self.assertIsNotNone(event_formatter)