You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
947 B
C#
29 lines
947 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Query;
|
|
using Microsoft.EntityFrameworkCore.Update;
|
|
|
|
namespace EntityFrameworkCore.Jet.FunctionalTests
|
|
{
|
|
public class JetComplianceTest : RelationalComplianceTestBase
|
|
{
|
|
|
|
protected override ICollection<Type> IgnoredTestBases { get; } = new HashSet<Type>
|
|
{
|
|
typeof(SpatialQueryRelationalTestBase<>),
|
|
typeof(SpatialQueryTestBase<>),
|
|
typeof(SpatialTestBase<>),
|
|
typeof(NonSharedPrimitiveCollectionsQueryTestBase),
|
|
typeof(NonSharedPrimitiveCollectionsQueryRelationalTestBase),
|
|
typeof(JsonQueryTestBase<>),
|
|
typeof(JsonQueryAdHocTestBase),
|
|
typeof(JsonUpdateTestBase<>)
|
|
};
|
|
|
|
protected override Assembly TargetAssembly { get; } = typeof(JetComplianceTest).Assembly;
|
|
|
|
}
|
|
}
|