Skip to content

Commit

Permalink
Implement ISourceFileNameProvider in ObjectQueryIntegrationTests.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcweber committed Jan 20, 2025
1 parent cab2cab commit 46a49b9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ namespace ExRam.Gremlinq.Providers.GremlinServer.Tests
{
[IntegrationTest("Linux", true)]
[IntegrationTest("Windows")]
public class ObjectQueryIntegrationTests : QueryExecutionTest, IClassFixture<GremlinServerContainerFixture>
public class ObjectQueryIntegrationTests : QueryExecutionTest, IClassFixture<GremlinServerContainerFixture>, ISourceFileNameProvider<ObjectQueryIntegrationTests>
{
public ObjectQueryIntegrationTests(GremlinServerContainerFixture fixture) : base(
fixture,
new ObjectQueryExecutingGremlinqVerifier())
{
}

public static string GetSourceFileName() => SourceFileName.OfThis();
}
}

0 comments on commit 46a49b9

Please sign in to comment.