public void GetByRef() { var list = _orchestrate.List(CollectionName, 10, null, null); var match = list.Results.Single(x => x.Path.Key == "1"); var result = _orchestrate.Get(CollectionName, "1", match.Path.Ref); Assert.IsTrue(result.Value != null); }
public void List() { var result = _orchestrate.List(CollectionName, 10, null, null); Assert.IsTrue(result.Count > 0); }