コード例 #1
0
ファイル: chrome_preferences.py プロジェクト: x35029/plaso
    def testGetFormatStringAttributeNames(self):
        """Tests the GetFormatStringAttributeNames function."""
        event_formatter = (
            chrome_preferences.ChromeExtensionInstallationEventFormatter())

        expected_attribute_names = ['extension_id', 'extension_name', 'path']

        self._TestGetFormatStringAttributeNames(event_formatter,
                                                expected_attribute_names)
コード例 #2
0
ファイル: chrome_preferences.py プロジェクト: x35029/plaso
 def testInitialization(self):
     """Tests the initialization."""
     event_formatter = (
         chrome_preferences.ChromeExtensionInstallationEventFormatter())
     self.assertIsNotNone(event_formatter)