Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
TestResultElement.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 using System;
4 
5 #if XAMCORE_2_0
6 using UIKit;
7 #else
8 using MonoTouch.UIKit;
9 #endif
10 
11 using MonoTouch.Dialog;
12 
13 using NUnit.Framework;
14 using NUnit.Framework.Internal;
15 
16 namespace SiliconStudio.Paradox.UnitTesting.UI {
17 
19 
20  public TestResultElement (TestResult result) :
21  base (result.Message ?? "Unknown error", result.StackTrace, UITableViewCellStyle.Subtitle)
22  {
23  }
24  }
25 }