Skip to content

Commit

Permalink
refactor: reorder katas
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromsantos committed Feb 26, 2024
1 parent fb452ef commit 8a96eed
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ShoppingCartKata;
namespace ShoppingCartKata.Application.UseCases;

public interface IAddProductToCartUseCase {
void Execute(string cartId, string productId);
Expand Down
4 changes: 4 additions & 0 deletions 18_ShoppingCart/ShoppingCart.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@
<PackageReference Include="Meziantou.Xunit.ParallelTestFramework" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
<Folder Include="Domain\" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace SocialNetworkKata.UseCases;
namespace SocialNetworkKata.Application.UseCases;

public interface IUseCase {
void Execute(string command);
Expand Down
4 changes: 4 additions & 0 deletions 19_SocialNetwork/SocialNetwork.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@
<PackageReference Include="Meziantou.Xunit.ParallelTestFramework" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
<Folder Include="Application\" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions cs-kata.sln
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "10_Tennis", "10_Tennis", "{
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "13_RefactoringGolf", "13_RefactoringGolf", "{B1DE4BF2-5EC0-4598-ADF8-4407EB7F872E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "15_SmellyTicTacToe", "15_SmellyTicTacToe", "{C346224A-6043-43BB-B239-B2B0A334776A}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "14_SmellyTicTacToe", "14_SmellyTicTacToe", "{C346224A-6043-43BB-B239-B2B0A334776A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "14_CharacterCopier", "14_CharacterCopier", "{2676CFDB-480A-4643-83DA-8F2498258EB0}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "15_CharacterCopier", "15_CharacterCopier", "{2676CFDB-480A-4643-83DA-8F2498258EB0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "16_TicTacToe", "16_TicTacToe", "{9F230852-7BEC-4233-AEE5-F2C01B166736}"
EndProject
Expand Down

0 comments on commit 8a96eed

Please sign in to comment.