You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae201_qwirkle/Qwirkle/TestBase/UnitTest1.cs

15 lines
344 B

using QwirkleClassLibrary;
namespace TestBase
{
public class UnitTest1
{
public void Test_PlayerRemoveTile(bool expectedResult)
{
Tile t = new Tile(Square, Red);
Player p = new Player("Patrick");
bool result = p.RemoveTilePlayer(t);
Assert.True(result);
}
}
}