From 0ec2342559e3892a588d4cac7ee7687461da7e56 Mon Sep 17 00:00:00 2001 From: Paul Welter Date: Mon, 11 Sep 2023 13:30:34 -0500 Subject: [PATCH] fix unit tests --- .../FluentCommand.Generators.Tests.csproj | 2 +- .../FluentCommand.Performance.csproj | 4 ++-- test/FluentCommand.Tests/FluentCommand.Tests.csproj | 2 +- .../SelectBuilderTest.SelectEntityJoinBuilder.verified.txt | 2 +- .../SelectBuilderTest.SelectEntityWhereIn.verified.txt | 2 +- .../SelectBuilderTest.SelectEntityWhereInDouble.verified.txt | 2 +- .../SelectBuilderTest.SelectEntityWhereInIf.verified.txt | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/FluentCommand.Generators.Tests/FluentCommand.Generators.Tests.csproj b/test/FluentCommand.Generators.Tests/FluentCommand.Generators.Tests.csproj index dc3bdeb2..b75afb34 100644 --- a/test/FluentCommand.Generators.Tests/FluentCommand.Generators.Tests.csproj +++ b/test/FluentCommand.Generators.Tests/FluentCommand.Generators.Tests.csproj @@ -14,7 +14,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/test/FluentCommand.Performance/FluentCommand.Performance.csproj b/test/FluentCommand.Performance/FluentCommand.Performance.csproj index bb91fd13..58c45771 100644 --- a/test/FluentCommand.Performance/FluentCommand.Performance.csproj +++ b/test/FluentCommand.Performance/FluentCommand.Performance.csproj @@ -8,8 +8,8 @@ - - + + diff --git a/test/FluentCommand.Tests/FluentCommand.Tests.csproj b/test/FluentCommand.Tests/FluentCommand.Tests.csproj index 2f168598..c6f387a9 100644 --- a/test/FluentCommand.Tests/FluentCommand.Tests.csproj +++ b/test/FluentCommand.Tests/FluentCommand.Tests.csproj @@ -12,7 +12,7 @@ all - + all runtime; build; native; contentfiles; analyzers diff --git a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityJoinBuilder.verified.txt b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityJoinBuilder.verified.txt index 1d8c124a..f93a51b6 100644 --- a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityJoinBuilder.verified.txt +++ b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityJoinBuilder.verified.txt @@ -1,4 +1,4 @@ -/* Caller; SelectEntityJoinBuilder() in SelectBuilderTest.cs:line 223 */ +/* Caller; SelectEntityJoinBuilder() in SelectBuilderTest.cs:line 247 */ SELECT [t].[Id], [t].[Description], [t].[DueDate], [u].[DisplayName], [u].[EmailAddress] AS [Email], [s].[Name] AS [Status] FROM [Task] AS [t] INNER JOIN [dbo].[Status] AS [s] ON [t].[StatusId] = [s].[Id] diff --git a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereIn.verified.txt b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereIn.verified.txt index 25061bd5..0a4c26a2 100644 --- a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereIn.verified.txt +++ b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereIn.verified.txt @@ -1,4 +1,4 @@ -/* Caller; SelectEntityWhereIn() in SelectBuilderTest.cs:line 164 */ +/* Caller; SelectEntityWhereIn() in SelectBuilderTest.cs:line 188 */ SELECT [Id], [Name] FROM [dbo].[Status] WHERE ([Id] IN (@p0000,@p0001)) diff --git a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInDouble.verified.txt b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInDouble.verified.txt index cfc8a2d5..675ab7f8 100644 --- a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInDouble.verified.txt +++ b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInDouble.verified.txt @@ -1,4 +1,4 @@ -/* Caller; SelectEntityWhereInDouble() in SelectBuilderTest.cs:line 183 */ +/* Caller; SelectEntityWhereInDouble() in SelectBuilderTest.cs:line 207 */ SELECT [Id], [Name] FROM [dbo].[Status] WHERE ([Id] IN (@p0000,@p0001) AND [Name] IN (@p0002,@p0003)) diff --git a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInIf.verified.txt b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInIf.verified.txt index 946131fc..7950bce7 100644 --- a/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInIf.verified.txt +++ b/test/FluentCommand.Tests/Query/Snapshots/SelectBuilderTest.SelectEntityWhereInIf.verified.txt @@ -1,4 +1,4 @@ -/* Caller; SelectEntityWhereInIf() in SelectBuilderTest.cs:line 203 */ +/* Caller; SelectEntityWhereInIf() in SelectBuilderTest.cs:line 227 */ SELECT [Id], [Name] FROM [dbo].[Status] WHERE ([Id] IN (@p0000,@p0001))