Exemplo n.º 1
0
    def testGetFormatStringAttributeNames(self):
        """Tests the GetFormatStringAttributeNames function."""
        event_formatter = winevt.WinEVTFormatter()

        expected_attribute_names = [
            'event_identifier', 'severity', 'record_number', 'event_type',
            'event_category', 'source_name', 'computer_name', 'message_string',
            'strings'
        ]

        self._TestGetFormatStringAttributeNames(event_formatter,
                                                expected_attribute_names)
Exemplo n.º 2
0
 def testInitialization(self):
   """Tests the initialization."""
   event_formatter = winevt.WinEVTFormatter()
   self.assertNotEqual(event_formatter, None)