public AssertionDeclaredFailure(AssertionData dataSource, string message, object[] format) : base(dataSource, message, format) { }
// <summary>clone assertion data from another assertion</summary> public AssertionData(AssertionData dataSource) : this(dataSource.Assertion, dataSource.ExpectedReference, dataSource.ActualReference, dataSource.FormatMessage, dataSource.FormatArgs, dataSource.ExternalException, dataSource.InternalException, dataSource.ContextData, dataSource.DataMappings) { }
public AssertionDeclaredFailure(AssertionData dataSource) : base(dataSource) { }
// <summary>clone assertion data from another assertion, assign new message and format args</summary> public AssertionData(AssertionData dataSource, string message, object[] format) : this(dataSource.Assertion, dataSource.ExpectedReference, dataSource.ActualReference, message, format, dataSource.ExternalException, dataSource.InternalException, dataSource.ContextData, dataSource.DataMappings) { }
public AssertionSuccess(AssertionData dataSource) : base(dataSource) { }
public AssertionSuccess(AssertionData dataSource, string message, object[] format) : base(dataSource, message, format) { }
public AssertionDeclaredInconclusive(AssertionData dataSource, string message, object[] format) : base(dataSource, message, format) { }
public AssertionDeclaredInconclusive(AssertionData dataSource) : base(dataSource) { }