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/TestScore.cs

31 lines
461 B

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