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

        expected_attribute_names = [
            'url', 'title', 'visit_count', 'host', 'extra_string'
        ]

        self._TestGetFormatStringAttributeNames(event_formatter,
                                                expected_attribute_names)
Exemplo n.º 2
0
 def testInitialization(self):
     """Tests the initialization."""
     event_formatter = firefox.FirefoxPageVisitFormatter()
     self.assertIsNotNone(event_formatter)