Пример #1
0
 public TestStatus(TestStatusCode code, string text, Exception exception)
 {
     this.code      = code;
     this.text      = text;
     this.exception = exception;
 }
Пример #2
0
 public TestStatus(TestStatusCode code, string text)
     : this(code, text, null)
 {
 }
Пример #3
0
 public TestStatus(TestStatusCode code, Exception exception)
     : this(code, null, exception)
 {
 }
Пример #4
0
 public TestStatus(TestStatusCode code)
     : this(code, null, null)
 {
 }
		public TestStatus (TestStatusCode code, string text, Exception exception)
		{
			this.code = code;
			this.text = text;
			this.exception = exception;
		}
		public TestStatus (TestStatusCode code, Exception exception)
			: this (code, null, exception)
		{
		}
		public TestStatus (TestStatusCode code, string text)
			: this (code, text, null)
		{
		}
		public TestStatus (TestStatusCode code)
			: this (code, null, null)
		{
		}