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