From 799841a0d85deb984918a65b6585c50f84f0d892 Mon Sep 17 00:00:00 2001 From: James Rhodes Date: Sun, 24 Nov 2013 11:36:45 +1100 Subject: [PATCH] Remove debugging output from xUnit.NET test engine Summary: This just removes the `print "Discovered test .."` code in the xUnit.NET unit test engine. If users need to diagnose what tests are being debugged, it can be found out with `--trace` and observing what build commands are invoked. Test Plan: Ran `arc unit --everything` and didn't see the message any more. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7639 --- src/unit/engine/XUnitTestEngine.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/unit/engine/XUnitTestEngine.php b/src/unit/engine/XUnitTestEngine.php index b3920fad..db18bbef 100644 --- a/src/unit/engine/XUnitTestEngine.php +++ b/src/unit/engine/XUnitTestEngine.php @@ -135,7 +135,6 @@ class XUnitTestEngine extends ArcanistBaseUnitTestEngine { } if (!$exists) { - print "Discovered test at ".$assembly."\n"; $results[] = array( 'project' => $project, 'assembly' => $assembly);