diff --git a/test/Providers.GremlinServer.Tests/ObjectQueryIntegrationTests.cs b/test/Providers.GremlinServer.Tests/ObjectQueryIntegrationTests.cs index c94961c46..8a63c6824 100644 --- a/test/Providers.GremlinServer.Tests/ObjectQueryIntegrationTests.cs +++ b/test/Providers.GremlinServer.Tests/ObjectQueryIntegrationTests.cs @@ -5,12 +5,14 @@ namespace ExRam.Gremlinq.Providers.GremlinServer.Tests { [IntegrationTest("Linux", true)] [IntegrationTest("Windows")] - public class ObjectQueryIntegrationTests : QueryExecutionTest, IClassFixture + public class ObjectQueryIntegrationTests : QueryExecutionTest, IClassFixture, ISourceFileNameProvider { public ObjectQueryIntegrationTests(GremlinServerContainerFixture fixture) : base( fixture, new ObjectQueryExecutingGremlinqVerifier()) { } + + public static string GetSourceFileName() => SourceFileName.OfThis(); } }