-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathDesignApiConsistencyTest.cs
More file actions
38 lines (32 loc) · 2 KB
/
Copy pathDesignApiConsistencyTest.cs
File metadata and controls
38 lines (32 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.EntityFrameworkCore.Scaffolding.Internal;
namespace Microsoft.EntityFrameworkCore;
public class DesignApiConsistencyTest(DesignApiConsistencyTest.DesignApiConsistencyFixture fixture)
: ApiConsistencyTestBase<DesignApiConsistencyTest.DesignApiConsistencyFixture>(fixture)
{
protected override void AddServices(ServiceCollection serviceCollection)
{
}
protected override Assembly TargetAssembly
=> typeof(OperationExecutor).Assembly;
public class DesignApiConsistencyFixture : ApiConsistencyFixtureBase
{
public override HashSet<Type> FluentApiTypes { get; } = [typeof(DesignTimeServiceCollectionExtensions)];
public override HashSet<MethodInfo> VirtualMethodExceptions { get; } =
[
typeof(CSharpEntityTypeGeneratorBase.ToStringInstanceHelper)
.GetProperty(nameof(CSharpEntityTypeGeneratorBase.ToStringInstanceHelper.FormatProvider))!.GetMethod!,
typeof(CSharpEntityTypeGeneratorBase.ToStringInstanceHelper)
.GetProperty(nameof(CSharpEntityTypeGeneratorBase.ToStringInstanceHelper.FormatProvider))!.SetMethod!,
typeof(CSharpEntityTypeGeneratorBase.ToStringInstanceHelper).GetMethod(
nameof(CSharpEntityTypeGeneratorBase.ToStringInstanceHelper.ToStringWithCulture))!,
typeof(CSharpDbContextGeneratorBase.ToStringInstanceHelper)
.GetProperty(nameof(CSharpDbContextGeneratorBase.ToStringInstanceHelper.FormatProvider))!.GetMethod!,
typeof(CSharpDbContextGeneratorBase.ToStringInstanceHelper)
.GetProperty(nameof(CSharpDbContextGeneratorBase.ToStringInstanceHelper.FormatProvider))!.SetMethod!,
typeof(CSharpDbContextGeneratorBase.ToStringInstanceHelper).GetMethod(
nameof(CSharpDbContextGeneratorBase.ToStringInstanceHelper.ToStringWithCulture))!
];
}
}