public void CaptureRequirementIsInstanceOfFailed()
 {
     BaseTestSite.CaptureRequirementIfIsInstanceOfType(
         2,
         typeof(System.String),
         12,
         "The type of the instance should be System.String.");
 }
 public void CaptureRequirementIsInstanceOfPassed()
 {
     BaseTestSite.CaptureRequirementIfIsInstanceOfType(
         2,
         typeof(System.Int32),
         11,
         "The type of the instance should be System.Int32.");
 }