def testGetFormatStringAttributeNames(self): """Tests the GetFormatStringAttributeNames function.""" event_formatter = safari_cookies.SafaryCookieFormatter() expected_attribute_names = ['url', 'path', 'cookie_name', 'flags'] self._TestGetFormatStringAttributeNames(event_formatter, expected_attribute_names)
def testInitialization(self): """Tests the initialization.""" event_formatter = safari_cookies.SafaryCookieFormatter() self.assertIsNotNone(event_formatter)