Skip to content

Commit d64388f

Browse files
committed
TypeAsTest: Ignore tests that contain cross apply for certain providers
1 parent 2c01872 commit d64388f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Orm/Xtensive.Orm.Tests/Linq/TypeAsTest.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ private ComparisonComparer(Comparison<T> comparison)
5454
[Test]
5555
public void Test1()
5656
{
57+
Require.AllFeaturesSupported(Providers.ProviderFeatures.Apply);
58+
5759
using(var session = Domain.OpenSession())
5860
using (var tx = session.OpenTransaction()) {
5961
QueryExpressionTest(
@@ -67,6 +69,8 @@ public void Test1()
6769
[Test]
6870
public void Test2()
6971
{
72+
Require.AllFeaturesSupported(Providers.ProviderFeatures.Apply);
73+
7074
using (var session = Domain.OpenSession())
7175
using (var tx = session.OpenTransaction()) {
7276
QueryExpressionTest(
@@ -80,6 +84,8 @@ public void Test2()
8084
[Test]
8185
public void Test3()
8286
{
87+
Require.AllFeaturesSupported(Providers.ProviderFeatures.Apply);
88+
8389
using (var session = Domain.OpenSession())
8490
using (var tx = session.OpenTransaction()) {
8591
QueryExpressionTest(

0 commit comments

Comments
 (0)