コード例 #1
0
        public DebugMonitorException ConstructorTest02(string message, Exception inner)
        {
            DebugMonitorException target = new DebugMonitorException(message, inner);

            return(target);
            // TODO: add assertions to method DebugMonitorExceptionTest.ConstructorTest02(String, Exception)
        }
コード例 #2
0
        public DebugMonitorException ConstructorTest01(string actionName, string message)
        {
            DebugMonitorException target = new DebugMonitorException(actionName, message);

            return(target);
            // TODO: add assertions to method DebugMonitorExceptionTest.ConstructorTest01(String, String)
        }
コード例 #3
0
 public void GetObjectDataTest(
     [PexAssumeUnderTest] DebugMonitorException target,
     SerializationInfo info,
     StreamingContext context
     )
 {
     target.GetObjectData(info, context);
     // TODO: add assertions to method DebugMonitorExceptionTest.GetObjectDataTest(DebugMonitorException, SerializationInfo, StreamingContext)
 }