Example #1
0
    def testGetFormatStringAttributeNames(self):
        """Tests the GetFormatStringAttributeNames function."""
        event_formatter = winjob.WinJobFormatter()

        expected_attribute_names = [
            'application', 'parameters', 'trigger_type', 'username',
            'working_directory'
        ]

        self._TestGetFormatStringAttributeNames(event_formatter,
                                                expected_attribute_names)
Example #2
0
 def testInitialization(self):
     """Tests the initialization."""
     event_formatter = winjob.WinJobFormatter()
     self.assertIsNotNone(event_formatter)