Github user ashwinisingh01 commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/915#discussion_r212572593
--- Diff:
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Driver/GremlinClientTests.cs ---
@@ -51,7 +52,18 @@ public async Task
ShouldSendScriptForEvaluationAndReturnCorrectResult(string req
Assert.Equal(expectedResponse, response);
}
}
-
+
+ [Fact]
+ public async Task ShouldReturnResponseAttributes()
+ {
+ var gremlinServer = new GremlinServer(TestHost, TestPort);
+ using (var gremlinClient = new GremlinClient(gremlinServer))
+ {
+ var requestMsg = _requestMessageProvider.GetDummyMessage();
--- End diff --
Fixed
---