[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Interfaces / TestOutput.cs
1 // ***********************************************************************
2 // Copyright (c) 2007 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.Interfaces
32 {
33     /// <summary>
34     /// The TestOutput class holds a unit of output from 
35     /// a test to a specific output stream
36     /// </summary>
37         public class TestOutput
38         {
39         /// <summary>
40         /// Construct with text, ouput destination type and
41         /// the name of the test that produced the output.
42         /// </summary>
43         /// <param name="text">Text to be output</param>
44         /// <param name="stream">Name of the stream or channel to which the text should be written</param>
45         /// <param name="testName">FullName of test that produced the output</param>
46                 public TestOutput(string text, string stream, string testName)
47         {
48             Text = text;
49             Stream = stream;
50             TestName = testName;
51         }
52
53         /// <summary>
54         /// Return string representation of the object for debugging
55         /// </summary>
56         /// <returns></returns>
57                 public override string ToString()
58                 {
59                         return Stream + ": " + Text;
60                 }
61
62         /// <summary>
63         /// Get the text 
64         /// </summary>
65                 public string Text { get; private set; }
66
67         /// <summary>
68         /// Get the output type
69         /// </summary>
70                 public string Stream { get; private set; }
71
72         /// <summary>
73         /// Get the name of the test that created the output
74         /// </summary>
75         public string TestName { get; private set; }
76
77         /// <summary>
78         /// Convert the TestOutput object to an XML string
79         /// </summary>
80         public string ToXml()
81         {
82             return TestName != null
83                 ? string.Format("<test-output stream='{0}' testname='{1}'>{2}</test-output>", Stream, TestName, Text)
84                 : string.Format("<test-output stream='{0}'>{1}</test-output>", Stream, Text);
85         }
86     }
87 }