コード例 #1
0
ファイル: MakeCoupleTests.cs プロジェクト: mtashkinov/study
 public void WrongCoupleWomanTest()
 {
     try
     {
         God       god       = new God();
         Girl      girl      = new Girl(NamesHelper.GenerateName(Sex.Woman));
         SmartGirl smartGirl = new SmartGirl(NamesHelper.GenerateName(Sex.Woman));
         god.MakeCouple(girl, smartGirl);
         Assert.Fail("No exception");
     } catch (Exception ex)
     {
         if (!(ex is WrongCoupleException))
         {
             Assert.Fail("Not WrongCoupleException");
         }
     }
 }
コード例 #2
0
ファイル: MakeCoupleTests.cs プロジェクト: mtashkinov/study
 public void WrongCoupleManTest()
 {
     try
     {
         God     god     = new God();
         Student student = new Student(NamesHelper.GenerateName(Sex.Man));
         Botan   botan   = new Botan(NamesHelper.GenerateName(Sex.Man));
         god.MakeCouple(student, botan);
         Assert.Fail("No exception");
     }
     catch (Exception ex)
     {
         if (!(ex is WrongCoupleException))
         {
             Assert.Fail("Not WrongCoupleException");
         }
     }
 }