Skip to content

Commit

Permalink
chore: add folder categories in solution (#171)
Browse files Browse the repository at this point in the history
* chore: add folder categories in solution

* pr-fix: add security folder

* pr-fix: correct merge w/ 'main'
  • Loading branch information
stijnmoreels authored Aug 2, 2024
1 parent 5a07d22 commit 4f5aecd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Arcus.Testing.Tests.Unit/Core/PollTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public async Task PollAsync_WithTargetAvailableWithinTimeFrame_SucceedsByContinu
await GetsResultAsync(() => Poll.UntilAvailableAsync<object, TestPollException>(SometimesSucceedsResultAsync, ReasonableTimeFrame));

await GetsResultAsync(async () => await Poll.Target(AlwaysSucceedsResultAsync));
await GetsResultAsync(async () => await Poll.Target(SometimesSucceedsResultAsync).LowestTimeFrame());
await GetsResultAsync(async () => await Poll.Target(SometimesSucceedsResultAsync).ReasonableTimeFrame());
await GetsResultAsync(async () => await Poll.Target<object, DllNotFoundException>(AlwaysSucceedsResultAsync));
await GetsResultAsync(async () => await Poll.Target<object, TestPollException>(SometimesSucceedsResultAsync).LowestTimeFrame());
await GetsResultAsync(async () => await Poll.Target<object, TestPollException>(SometimesSucceedsResultAsync).ReasonableTimeFrame());
}

[Fact]
Expand Down
7 changes: 7 additions & 0 deletions src/Arcus.Testing.sln
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Storage", "Storage", "{FA2E
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Arcus.Testing.Storage.Blob", "Arcus.Testing.Storage.Blob\Arcus.Testing.Storage.Blob.csproj", "{1E771531-C584-474E-A338-A29D6493D600}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Messaging", "Messaging", "{D5AF4FD4-A4AF-43FF-8400-63B4A05498F6}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Security", "Security", "{8108E81D-EF8B-48FF-AEEA-F0273DC5F835}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -101,6 +105,9 @@ Global
{D0484271-ABA1-4C2F-B0ED-E207130C1DE8} = {45B1870D-C19A-4680-BDD8-2F670C793BC2}
{4DCD1626-66B4-4396-9CD6-951E9CE7BDE8} = {64013B91-7B1E-4F88-8FD7-CCF583D4A4CA}
{3D66B14F-2CC7-44E6-A53F-1E45F9A6BCF6} = {64013B91-7B1E-4F88-8FD7-CCF583D4A4CA}
{13FFF971-9F7E-4350-B193-85F6485F41B7} = {8108E81D-EF8B-48FF-AEEA-F0273DC5F835}
{3F7076F3-A88B-43B2-84C9-70A9E632012A} = {D5AF4FD4-A4AF-43FF-8400-63B4A05498F6}
{E710B99E-F14A-46D4-965D-BB20AE2A7E20} = {D5AF4FD4-A4AF-43FF-8400-63B4A05498F6}
{19A63ECA-029D-46B3-A252-445570AD7D82} = {057BBCFA-D72F-473E-AB38-5A628A47D56D}
{50163460-A494-4C02-B6BC-30A0DE46BABE} = {45B1870D-C19A-4680-BDD8-2F670C793BC2}
{122F9379-5FAD-4759-BFAB-5A437826682C} = {45B1870D-C19A-4680-BDD8-2F670C793BC2}
Expand Down

0 comments on commit 4f5aecd

Please sign in to comment.