[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Common / ColorConsoleWriter.cs
1 // ***********************************************************************
2 // Copyright (c) 2014 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.IO;
31 using System.Text;
32
33 namespace NUnit.Common
34 {
35     public class ColorConsoleWriter : ExtendedTextWrapper
36     {
37         public bool _colorEnabled;
38
39         /// <summary>
40         /// Construct a ColorConsoleWriter.
41         /// </summary>
42         public ColorConsoleWriter() : this(true) { }
43
44         /// <summary>
45         /// Construct a ColorConsoleWriter.
46         /// </summary>
47         /// <param name="colorEnabled">Flag indicating whether color should be enabled</param>
48         public ColorConsoleWriter(bool colorEnabled)
49             : base(Console.Out)
50         {
51             _colorEnabled = colorEnabled;
52         }
53
54         #region Extended Methods
55         /// <summary>
56         /// Writes the value with the specified style.
57         /// </summary>
58         /// <param name="style">The style.</param>
59         /// <param name="value">The value.</param>
60         public override void Write(ColorStyle style, string value)
61         {
62             if (_colorEnabled)
63                 using (new ColorConsole(style))
64                 {
65                     Write(value);
66                 }
67             else
68                 Write(value);
69         }
70
71         /// <summary>
72         /// Writes the value with the specified style.
73         /// </summary>
74         /// <param name="style">The style.</param>
75         /// <param name="value">The value.</param>
76         public override void WriteLine(ColorStyle style, string value)
77         {
78             if (_colorEnabled)
79                 using (new ColorConsole(style))
80                 {
81                     WriteLine(value);
82                 }
83             else
84                 WriteLine(value);
85         }
86
87         /// <summary>
88         /// Writes the label and the option that goes with it.
89         /// </summary>
90         /// <param name="label">The label.</param>
91         /// <param name="option">The option.</param>
92         public override void WriteLabel(string label, object option)
93         {
94             WriteLabel(label, option, ColorStyle.Value);
95         }
96
97         /// <summary>
98         /// Writes the label and the option that goes with it followed by a new line.
99         /// </summary>
100         /// <param name="label">The label.</param>
101         /// <param name="option">The option.</param>
102         public override void WriteLabelLine(string label, object option)
103         {
104             WriteLabelLine(label, option, ColorStyle.Value);
105         }
106
107         /// <summary>
108         /// Writes the label and the option that goes with it and optionally writes a new line.
109         /// </summary>
110         /// <param name="label">The label.</param>
111         /// <param name="option">The option.</param>
112         /// <param name="valueStyle">The color to display the value with</param>
113         public override void WriteLabel(string label, object option, ColorStyle valueStyle)
114         {
115             Write(ColorStyle.Label, label);
116             Write(valueStyle, option.ToString());
117         }
118
119         /// <summary>
120         /// Writes the label and the option that goes with it followed by a new line.
121         /// </summary>
122         /// <param name="label">The label.</param>
123         /// <param name="option">The option.</param>
124         /// <param name="valueStyle">The color to display the value with</param>
125         public override void WriteLabelLine(string label, object option, ColorStyle valueStyle)
126         {
127             WriteLabel(label, option, valueStyle);
128             WriteLine();
129         }
130
131         #endregion
132     }
133 }