Skip to content

Commit 57e52f6

Browse files
committed
Added test for tagconfigs folder
* Added test
1 parent 66119f0 commit 57e52f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

RecommendationTools/UnitTests/S3SyncTests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,14 @@ public async Task ValidateS3RecommendationContentMatchesRepository()
4040
ZipFile.ExtractToDirectory("github.zip", TempExtractDir);
4141
var pathToRepoRecs = $@"{TempExtractDir}\porting-assistant-dotnet-datastore-master\recommendation";
4242
var pathToRepoTemplates = $@"{TempExtractDir}\porting-assistant-dotnet-datastore-master\Templates";
43+
var pathToTagConfigs = $@"{TempExtractDir}\porting-assistant-dotnet-datastore-master\tagconfigs";
4344

4445
var allRepoFilesToCheck = Directory.EnumerateFiles(pathToRepoRecs, "*", SearchOption.AllDirectories).ToList();
4546
var allRepoTemplates = Directory.EnumerateFiles(pathToRepoTemplates, "*", SearchOption.AllDirectories).ToList();
47+
var allRepoConfigs = Directory.EnumerateFiles(pathToTagConfigs, "*", SearchOption.AllDirectories).ToList();
4648

4749
allRepoFilesToCheck.AddRange(allRepoTemplates);
50+
allRepoFilesToCheck.AddRange(allRepoConfigs);
4851

4952
Assert.Multiple(async () =>
5053
{

0 commit comments

Comments
 (0)