Преглед изворни кода

Add some (optional) verbose outputs to unit tests

hughsando пре 6 година
родитељ
комит
77068e10c7
1 измењених фајлова са 6 додато и 0 уклоњено
  1. 6 0
      tests/unit/src/unit/TestMain.hx

+ 6 - 0
tests/unit/src/unit/TestMain.hx

@@ -126,6 +126,12 @@ class TestMain {
 			});
 		};
 		#end
+		#if sys
+		if (verbose)
+			runner.onTestStart.add(function(test) {
+				Sys.println(' $test...'); // TODO: need utest success state for this
+			});
+		#end
 		runner.run();
 	}
 }