[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Internal / Results / TestCaseResult.cs
1 // ***********************************************************************
2 // Copyright (c) 2015 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 using System.Collections.Generic;
31 #if PARALLEL
32 using System.Collections.Concurrent;
33 #endif
34 using NUnit.Framework.Interfaces;
35
36 namespace NUnit.Framework.Internal
37 {
38     /// <summary>
39     /// Represents the result of running a single test case.
40     /// </summary>
41     public class TestCaseResult : TestResult
42     {
43         /// <summary>
44         /// Construct a TestCaseResult based on a TestMethod
45         /// </summary>
46         /// <param name="test">A TestMethod to which the result applies.</param>
47         public TestCaseResult(TestMethod test) : base(test) { }
48
49         #region Overrides
50
51         /// <summary>
52         /// Gets the number of test cases that failed
53         /// when running the test and all its children.
54         /// </summary>
55         public override int FailCount
56         {
57             get { return ResultState.Status == TestStatus.Failed ? 1 : 0; }
58         }
59
60         /// <summary>
61         /// Gets the number of test cases that passed
62         /// when running the test and all its children.
63         /// </summary>
64         public override int PassCount
65         {
66             get { return ResultState.Status == TestStatus.Passed ? 1 : 0; }
67         }
68
69         /// <summary>
70         /// Gets the number of test cases that were skipped
71         /// when running the test and all its children.
72         /// </summary>
73         public override int SkipCount
74         {
75             get { return ResultState.Status == TestStatus.Skipped ? 1 : 0; }
76         }
77
78         /// <summary>
79         /// Gets the number of test cases that were inconclusive
80         /// when running the test and all its children.
81         /// </summary>
82         public override int InconclusiveCount
83         {
84             get { return ResultState.Status == TestStatus.Inconclusive ? 1 : 0; }
85         }
86
87         /// <summary>
88         /// Indicates whether this result has any child results.
89         /// </summary>
90         public override bool HasChildren
91         {
92             get { return false; }
93         }
94
95         /// <summary>
96         /// Gets the collection of child results.
97         /// </summary>
98         public override IEnumerable<ITestResult> Children
99         {
100             get { return new ITestResult[0]; }
101         }
102
103         #endregion
104     }
105 }