From 02c0c1edde3de5cad40af1b4c80e2932b699ba5b Mon Sep 17 00:00:00 2001 From: Koen Bekkenutte <2912652+kbekkenutte@users.noreply.github.com> Date: Thu, 27 May 2021 06:10:31 +0800 Subject: [PATCH] Fixed tests --- ...ratorTests.ArgumentlessProjectableComputedMethod.verified.txt | 1 + ...atorTests.MoreComplexProjectableComputedProperty.verified.txt | 1 + ...s.ProjectableComputedMethodWithMultipleArguments.verified.txt | 1 + ...ests.ProjectableComputedMethodWithSingleArgument.verified.txt | 1 + ...GeneratorTests.ProjectableComputedPropertyMethod.verified.txt | 1 + ...eratorTests.ProjectableComputedPropertyUsingThis.verified.txt | 1 + ...rTests.ProjectablePropertyToNavigationalProperty.verified.txt | 1 + ...s.SimpleProjectableComputedInNestedClassProperty.verified.txt | 1 + ...GeneratorTests.SimpleProjectableComputedProperty.verified.txt | 1 + ...ExpressionGeneratorTests.SimpleProjectableMethod.verified.txt | 1 + ...pressionGeneratorTests.SimpleProjectableProperty.verified.txt | 1 + 11 files changed, 11 insertions(+) diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ArgumentlessProjectableComputedMethod.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ArgumentlessProjectableComputedMethod.verified.txt index 96f5700..4517405 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ArgumentlessProjectableComputedMethod.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ArgumentlessProjectableComputedMethod.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.MoreComplexProjectableComputedProperty.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.MoreComplexProjectableComputedProperty.verified.txt index af0f539..89e7e4d 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.MoreComplexProjectableComputedProperty.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.MoreComplexProjectableComputedProperty.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithMultipleArguments.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithMultipleArguments.verified.txt index 10562c0..2bbbd2e 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithMultipleArguments.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithMultipleArguments.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithSingleArgument.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithSingleArgument.verified.txt index a66122a..cb2a467 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithSingleArgument.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedMethodWithSingleArgument.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyMethod.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyMethod.verified.txt index a6849fc..7664d58 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyMethod.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyMethod.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyUsingThis.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyUsingThis.verified.txt index 90dbb6d..b003d94 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyUsingThis.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectableComputedPropertyUsingThis.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectablePropertyToNavigationalProperty.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectablePropertyToNavigationalProperty.verified.txt index 2620672..b05f208 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectablePropertyToNavigationalProperty.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.ProjectablePropertyToNavigationalProperty.verified.txt @@ -3,6 +3,7 @@ using System.Linq; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedInNestedClassProperty.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedInNestedClassProperty.verified.txt index c30eec3..b37c835 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedInNestedClassProperty.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedInNestedClassProperty.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_D_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedProperty.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedProperty.verified.txt index b0e9668..5122f95 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedProperty.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableComputedProperty.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableMethod.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableMethod.verified.txt index 4dd8c80..c4d51c2 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableMethod.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableMethod.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo { diff --git a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableProperty.verified.txt b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableProperty.verified.txt index 4dd8c80..c4d51c2 100644 --- a/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableProperty.verified.txt +++ b/tests/EntityFrameworkCore.Projections.Generator.Tests/ProjectionExpressionGeneratorTests.SimpleProjectableProperty.verified.txt @@ -2,6 +2,7 @@ using System; using EntityFrameworkCore.Projections; namespace EntityFrameworkCore.Projections.Generated +#nullable disable { public static class Foo_C_Foo {