[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Constraints / ExceptionTypeConstraint.cs
1 // ***********************************************************************
2 // Copyright (c) 2011 Charlie Poole
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 // 
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 // 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 // ***********************************************************************
23 #define PORTABLE
24 #define TIZEN
25 #define NUNIT_FRAMEWORK
26 #define NUNITLITE
27 #define NET_4_5
28 #define PARALLEL
29 using System;
30
31 namespace NUnit.Framework.Constraints
32 {
33     /// <summary>
34     /// ExceptionTypeConstraint is a special version of ExactTypeConstraint
35     /// used to provided detailed info about the exception thrown in
36     /// an error message.
37     /// </summary>
38     public class ExceptionTypeConstraint : ExactTypeConstraint
39     {
40         /// <summary>
41         /// Constructs an ExceptionTypeConstraint
42         /// </summary>
43         public ExceptionTypeConstraint(Type type) : base(type) { }
44
45         /// <summary>
46         /// Applies the constraint to an actual value, returning a ConstraintResult.
47         /// </summary>
48         /// <param name="actual">The value to be tested</param>
49         /// <returns>A ConstraintResult</returns>
50         public override ConstraintResult ApplyTo<TActual>(TActual actual)
51         {
52             Exception castedToException = actual as Exception;
53
54             if (actual != null && castedToException == null)
55                 throw new ArgumentException("Actual value must be an Exception", "actual");
56
57             actualType = actual == null ? null : actual.GetType();
58
59             return new ExceptionTypeConstraintResult(this, actual, actualType, this.Matches(actual));
60         }
61
62         #region Nested Result Class
63         class ExceptionTypeConstraintResult : ConstraintResult
64         {
65             private readonly object caughtException;
66
67             public ExceptionTypeConstraintResult(ExceptionTypeConstraint constraint, object caughtException, Type type, bool matches)
68                 : base(constraint, type, matches) 
69             { 
70                 this.caughtException = caughtException;
71             }
72
73             public override void WriteActualValueTo(MessageWriter writer)
74             {
75                 if (this.Status == ConstraintStatus.Failure)
76                 {
77                     Exception ex = caughtException as Exception;
78
79                     if (ex == null)
80                     {
81                         base.WriteActualValueTo(writer);
82                     }
83                     else
84                     {
85                         writer.WriteActualValue(ex);
86                     }
87                 }
88             }
89         }
90         #endregion
91     }
92 }
93