Esempio n. 1
0
        public void CannotSetPassword()
        {
            var redis = new RedisTestcontainerConfiguration();

            Assert.Throws <NotImplementedException>(() => redis.Password = string.Empty);
        }
Esempio n. 2
0
        public void CanNotSetUsername()
        {
            var redis = new RedisTestcontainerConfiguration();

            Assert.Throws <NotImplementedException>(() => redis.Username = string.Empty);
        }