public void Throw_Exception_For_Zero_Row_To_SetupStandardPawns() { ExtendedAssert.Throws <ArgumentException>(() => Target.SetupStandardPawns(0)); }
public void Throw_Argument_Exception_For_OutOfBounds_Row_To_SetupStandardPawns() { ExtendedAssert.Throws <ArgumentException>(() => Target.SetupStandardPawns(9), "row"); }