using QwirkleClassLibrary; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestBase { public class TestBoard { [Fact] public void TestConstructor() { List c = new List(); for (int i = 0; i < 12; i++) { for (int j = 0; j < 12; j++) { Cell localcell = new(i, j); c.Add(localcell); } } Board b = new Board(); Assert.NotNull(c); Assert.Equal(c, b.GetCells()); } } }