コード例 #1
0
        public async Task GetGraphEdgeCollectionsAsync_ShouldSucceed()
        {
            var response = await _client.GetGraphEdgeCollectionsAsync(_fixture.TestGraph);

            Assert.Equal(HttpStatusCode.OK, response.Code);
            Assert.NotEmpty(response.Collections);
            Assert.False(response.Error);
        }