def testGetFormatStringAttributeNames(self): """Tests the GetFormatStringAttributeNames function.""" event_formatter = ssh.SSHFailedConnectionEventFormatter() expected_attribute_names = [ u'username', u'address', u'port', u'authentication_method', u'pid'] self._TestGetFormatStringAttributeNames( event_formatter, expected_attribute_names)
def testInitialization(self): """Tests the initialization.""" event_formatter = ssh.SSHFailedConnectionEventFormatter() self.assertIsNotNone(event_formatter)