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); } } }