Skip to content

Commit d876e2e

Browse files
authoredJan 12, 2025··
add tests scaffolding (#196)
1 parent 377adb9 commit d876e2e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1697
-1480
lines changed
 

‎.github/workflows/legacy-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ jobs:
7474
Where-Object { $_.FullName -like '*Legacy*' } |
7575
ForEach-Object { nuget restore $_.FullName }
7676
nuget restore ./EndToEndCommon/EndToEndCommon.csproj
77-
nuget restore ./LegacyEndToEndTests/LegacyEndToEndTests.csproj
78-
msbuild.exe ./LegacyEndToEndTests/LegacyEndToEndTests.csproj -p:Configuration=Release -p:FrameworkVersion=v4.7.2
77+
nuget restore ./EndToEndTestsLegacy/EndToEndTestsLegacy.csproj
78+
msbuild.exe ./EndToEndTestsLegacy/EndToEndTestsLegacy.csproj -p:Configuration=Release -p:FrameworkVersion=v4.7.2
7979
return $LASTEXITCODE
8080
}
8181
@@ -108,4 +108,4 @@ jobs:
108108
run: |
109109
$path = vswhere -latest -products * -requires Microsoft.VisualStudio.Workload.ManagedDesktop Microsoft.VisualStudio.Workload.Web -requiresAny -property installationPath
110110
$path = join-path $path 'Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe'
111-
& $path ./LegacyEndToEndTests/bin/Release/net472/LegacyEndToEndTests.dll
111+
& $path ./EndToEndTestsLegacy/bin/Release/net472/EndToEndTestsLegacy.dll

‎CodeGenerator/CodeGenerator.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,9 @@ private static CompilationUnitSyntax AddResharperDisables(CompilationUnitSyntax
160160
private ClassDeclarationSyntax GetClassDeclaration(string className,
161161
IEnumerable<MemberDeclarationSyntax> classMembers)
162162
{
163-
var optionalDapperConfig = Options.UseDapper ? Environment.NewLine + " Dapper.DefaultTypeMap.MatchNamesWithUnderscores = true;" : "";
163+
var optionalDapperConfig = Options.UseDapper
164+
? Environment.NewLine + " Dapper.DefaultTypeMap.MatchNamesWithUnderscores = true;"
165+
: "";
164166
var classDeclaration = (ClassDeclarationSyntax)ParseMemberDeclaration(
165167
$$"""
166168
class {{className}}

0 commit comments

Comments
 (0)
Please sign in to comment.