public void CaptureRequirementIsNotInstanceOfFailed()
 {
     BaseTestSite.CaptureRequirementIfIsNotInstanceOfType(
         2,
         typeof(System.Int32),
         14,
         "The type of the instance should not be System.Int32.");
 }
 public void CaptureRequirementIsNotInstanceOfPassed()
 {
     BaseTestSite.CaptureRequirementIfIsNotInstanceOfType(
         2,
         typeof(System.String),
         13,
         "The type of the instance should not be System.String.");
 }