-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95f9120
commit 6b23e69
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
//$Authors = Jiri Cincura ([email protected]) | ||
|
||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using FirebirdSql.EntityFrameworkCore.Firebird.FunctionalTests.Helpers; | ||
using FirebirdSql.EntityFrameworkCore.Firebird.FunctionalTests.TestUtilities; | ||
using Microsoft.EntityFrameworkCore; | ||
|
@@ -31,6 +32,13 @@ public FunkyDataQueryFbTest(FunkyDataQueryFbFixture fixture) | |
: base(fixture) | ||
{ } | ||
|
||
[Theory] | ||
[MemberData(nameof(IsAsyncData))] | ||
public override Task String_contains_on_argument_with_wildcard_column(bool async) | ||
{ | ||
return base.String_contains_on_argument_with_wildcard_column(async); | ||
} | ||
|
||
public class FunkyDataQueryFbFixture : FunkyDataQueryFixtureBase | ||
{ | ||
protected override ITestStoreFactory TestStoreFactory => FbTestStoreFactory.Instance; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters