Ejemplo n.º 1
0
    def testGetFormatStringAttributeNames(self):
        """Tests the GetFormatStringAttributeNames function."""
        event_formatter = twitter_ios.TwitterIOSStatusFormatter()

        expected_attribute_names = [
            'text',
            'user_id',
            'name',
            'retweet_count',
            'favorite_count',
            'favorited',
        ]

        self._TestGetFormatStringAttributeNames(event_formatter,
                                                expected_attribute_names)
Ejemplo n.º 2
0
 def testInitialization(self):
     """Tests the initialization."""
     event_formatter = twitter_ios.TwitterIOSStatusFormatter()
     self.assertIsNotNone(event_formatter)