29 using MonoTouch.UIKit;
32 using MonoTouch.Dialog;
34 using NUnit.Framework.Internal;
35 using NUnit.Framework.Api;
37 namespace SiliconStudio.
Paradox.UnitTesting.UI {
41 static internal UIColor DarkGreen = UIColor.FromRGB (0x00, 0x77, 0x00);
43 private TestResult result;
46 : base (
"?",
"?", UITableViewCellStyle.Subtitle)
49 throw new ArgumentNullException (
"test");
51 throw new ArgumentNullException (
"runner");
59 public TestResult Result {
60 get {
return result ??
new TestCaseResult (Test as TestMethod); }
61 set { result = value; }
64 protected ITest Test {
get;
private set; }
66 public void Update (TestResult result)
73 abstract public void Update ();
void Update(TestResult result)
TestElement(ITest test, TouchRunner runner)