public void ShouldThrowInvalidOperationExceptionIfNotConnected()
 {
     var client = new GraphClient(new Uri("http://foo"));
     Assert.Throws<InvalidOperationException>(() => client.ExecuteGetAllNodesGremlin<object>("", null));
 }
        public void ShouldThrowInvalidOperationExceptionIfNotConnected()
        {
            var client = new GraphClient(new Uri("http://foo"));

            Assert.Throws <InvalidOperationException>(() => client.ExecuteGetAllNodesGremlin <object>("", null));
        }