Exemplo n.º 1
0
        public void ThrowsExceptionWhenUriIsNull()
        {
            var client = Substitute.For <IRawGraphClient>();
            var query  = new CypherFluentQuery(client);

            Assert.Throws <ArgumentException>(() => query.LoadCsv(null, "row"));
        }
        public void ThrowsExceptionWhenUriIsNull()
        {
            var client = Substitute.For<IRawGraphClient>();
            var query = new CypherFluentQuery(client);

            Assert.Throws<ArgumentException>(() => query.LoadCsv(null, "row"));
        }