Browse Source

allow access to TestRunner.result (fixed issue #1653)

Simon Krajewski 12 years ago
parent
commit
4b24bc8533
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/haxe/unit/TestRunner.hx

+ 1 - 1
std/haxe/unit/TestRunner.hx

@@ -23,7 +23,7 @@ package haxe.unit;
 import Reflect;
 
 class TestRunner {
-	var result : TestResult;
+	public var result(default, null) : TestResult;
 	var cases  : List<TestCase>;
 
 #if flash9