GetClient() public method

public GetClient ( ) : string
return string
Exemplo n.º 1
0
        public void Does_set_Client_name_on_Connection()
        {
            using (var redis = new RedisClient("localhost?Client=nunit"))
            {
                var clientName = redis.GetClient();

                Assert.That(clientName, Is.EqualTo("nunit"));
            }
        }