File tree Expand file tree Collapse file tree 3 files changed +57
-3
lines changed
Provider/src/FirebirdSql.EntityFrameworkCore.Firebird.FunctionalTests/Query Expand file tree Collapse file tree 3 files changed +57
-3
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * The contents of this file are subject to the Initial
3+ * Developer's Public License Version 1.0 (the "License");
4+ * you may not use this file except in compliance with the
5+ * License. You may obtain a copy of the License at
6+ * https://github.com/FirebirdSQL/NETProvider/blob/master/license.txt.
7+ *
8+ * Software distributed under the License is distributed on
9+ * an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
10+ * express or implied. See the License for the specific
11+ * language governing rights and limitations under the License.
12+ *
13+ * All Rights Reserved.
14+ */
15+
16+ //$Authors = Jiri Cincura (jiri@cincura.net)
17+
18+ using Microsoft . EntityFrameworkCore . Query ;
19+ using Xunit . Abstractions ;
20+
21+ namespace FirebirdSql . EntityFrameworkCore . Firebird . FunctionalTests . Query
22+ {
23+ public class AsyncGearsOfWarQueryFbTest : AsyncGearsOfWarQueryTestBase < GearsOfWarQueryFbFixture >
24+ {
25+ public AsyncGearsOfWarQueryFbTest ( GearsOfWarQueryFbFixture fixture , ITestOutputHelper testOutputHelper )
26+ : base ( fixture )
27+ { }
28+ }
29+ }
Original file line number Diff line number Diff line change 1+ /*
2+ * The contents of this file are subject to the Initial
3+ * Developer's Public License Version 1.0 (the "License");
4+ * you may not use this file except in compliance with the
5+ * License. You may obtain a copy of the License at
6+ * https://github.com/FirebirdSQL/NETProvider/blob/master/license.txt.
7+ *
8+ * Software distributed under the License is distributed on
9+ * an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
10+ * express or implied. See the License for the specific
11+ * language governing rights and limitations under the License.
12+ *
13+ * All Rights Reserved.
14+ */
15+
16+ //$Authors = Jiri Cincura (jiri@cincura.net)
17+
18+ using Microsoft . EntityFrameworkCore . Query ;
19+
20+ namespace FirebirdSql . EntityFrameworkCore . Firebird . FunctionalTests . Query
21+ {
22+ public class GearsOfWarFromSqlQueryFbTest : GearsOfWarFromSqlQueryTestBase < GearsOfWarQueryFbFixture >
23+ {
24+ public GearsOfWarFromSqlQueryFbTest ( GearsOfWarQueryFbFixture fixture )
25+ : base ( fixture )
26+ { }
27+ }
28+ }
Original file line number Diff line number Diff line change 1515
1616//$Authors = Jiri Cincura (jiri@cincura.net)
1717
18- using System . Diagnostics ;
19- using System . Linq ;
2018using System . Threading . Tasks ;
2119using FirebirdSql . EntityFrameworkCore . Firebird . FunctionalTests . Helpers ;
2220using Microsoft . EntityFrameworkCore . Query ;
23- using Microsoft . EntityFrameworkCore . TestModels . GearsOfWarModel ;
2421using Xunit ;
2522
2623namespace FirebirdSql . EntityFrameworkCore . Firebird . FunctionalTests . Query
You can’t perform that action at this time.
0 commit comments