[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Internal / Filters / CompositeFilter.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 using NUnit.Framework.Interfaces;
32
33 namespace NUnit.Framework.Internal.Filters
34 {
35     /// <summary>
36     /// A base class for multi-part filters
37     /// </summary>
38     public abstract class CompositeFilter : TestFilter
39     {
40         /// <summary>
41         /// Constructs an empty CompositeFilter
42         /// </summary>
43         public CompositeFilter()
44         {
45             Filters = new List<ITestFilter>();
46         }
47
48         /// <summary>
49         /// Constructs a CompositeFilter from an array of filters
50         /// </summary>
51         /// <param name="filters"></param>
52         public CompositeFilter( params ITestFilter[] filters )
53         {
54             Filters = new List<ITestFilter>(filters);
55         }
56
57         /// <summary>
58         /// Adds a filter to the list of filters
59         /// </summary>
60         /// <param name="filter">The filter to be added</param>
61         public void Add(ITestFilter filter)
62         {
63             Filters.Add(filter);
64         }
65
66         /// <summary>
67         /// Return a list of the composing filters.
68         /// </summary>
69         public IList<ITestFilter> Filters { get; private set; }
70
71         /// <summary>
72         /// Checks whether the CompositeFilter is matched by a test.
73         /// </summary>
74         /// <param name="test">The test to be matched</param>
75         public abstract override bool Pass(ITest test);
76
77         /// <summary>
78         /// Checks whether the CompositeFilter is matched by a test.
79         /// </summary>
80         /// <param name="test">The test to be matched</param>
81         public abstract override bool Match(ITest test);
82
83         /// <summary>
84         /// Checks whether the CompositeFilter is explicit matched by a test.
85         /// </summary>
86         /// <param name="test">The test to be matched</param>
87         public abstract override bool IsExplicitMatch(ITest test);
88
89         /// <summary>
90         /// Adds an XML node
91         /// </summary>
92         /// <param name="parentNode">Parent node</param>
93         /// <param name="recursive">True if recursive</param>
94         /// <returns>The added XML node</returns>
95         public override TNode AddToXml(TNode parentNode, bool recursive)
96         {
97             TNode result = parentNode.AddElement(ElementName);
98
99             if (recursive)
100                 foreach (ITestFilter filter in Filters)
101                     filter.AddToXml(result, true);
102
103             return result;
104         }
105
106         /// <summary>
107         /// Gets the element name
108         /// </summary>
109         /// <value>Element name</value>
110         protected abstract string ElementName { get; }
111     }
112 }