using QwirkleClassLibrary; namespace TestBase; public class TestScore { [Theory] [InlineData(false)] //[InlineData(true)] public void Test_CellScoreConstructor(bool except) { /*if (!except) { Assert.Throws(() => new Score(null)); return; }*/ Player p = new Player("test"); Score score = new Score(p); Assert.True(true); } }