ajout du boardlayout et de la commande getmatch
This commit was merged in pull request #8.
This commit is contained in:
@@ -3,10 +3,18 @@ namespace Giants.Core.Tests;
|
||||
using Giants.Application;
|
||||
using Giants.Core.Commands;
|
||||
using Giants.Core.Interfaces;
|
||||
using Giants.Infrastructure;
|
||||
|
||||
public class NewMatchCommandTest
|
||||
{
|
||||
private readonly IMatchRepository _repo = new MatchRepositoryMock();
|
||||
private readonly IMatchRepository _repo;
|
||||
|
||||
public NewMatchCommandTest()
|
||||
{
|
||||
IHexagonalGrid _grid = new HexagonalGridImpl();
|
||||
BoardLayout layout = new BoardLayout(_grid);
|
||||
_repo = new MatchRepositoryMock(layout);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void CreateBasicMatch()
|
||||
|
||||
Reference in New Issue
Block a user