Example #1
0
 /// <summary>
 /// Checks that the ConstituentChartCellPart repository now contains the Hvo specified.
 /// </summary>
 /// <param name="hvo"></param>
 /// <param name="message"></param>
 public IConstituentChartCellPart VerifyCreatedCellPart(int hvo, string message)
 {
     try
     {
         return(m_partRepo.GetObject(hvo));
     }
     catch
     {
         Assert.Fail(String.Format(message + ". Hvo {0} isn't in the cellPart Repo!", hvo));
     }
     return(null);
 }