From eb620ffc77d5ff2afc68eb368a477a7e34b2027e Mon Sep 17 00:00:00 2001 From: meus <meus@625475ce-881a-0410-a577-b389adb331d8> Date: Sun, 14 Oct 2007 19:42:45 +0000 Subject: [PATCH] fixes default sorting direction and change instructions a little --- tests/DoctrineTest/Coverage.php | 4 ++-- tests/coverage/index.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/DoctrineTest/Coverage.php b/tests/DoctrineTest/Coverage.php index 5446f360e..9898d8c44 100644 --- a/tests/DoctrineTest/Coverage.php +++ b/tests/DoctrineTest/Coverage.php @@ -84,7 +84,7 @@ class DoctrineTest_Coverage uasort($coveredArray, array($this,"sortArray")); //and flip if it perhaps? - if (isset($_GET["desc"]) && $_GET["desc"] == "true"){ + if (isset($_GET["flip"]) && $_GET["flip"] == "true"){ $coveredArray = array_reverse($coveredArray, true); } @@ -332,6 +332,6 @@ class DoctrineTest_Coverage if ($a[$this->sortBy] == $b[$this->sortBy]) { return 0; } - return ( $a[$this->sortBy] < $b[$this->sortBy]) ? -1 : 1; + return ( $a[$this->sortBy] < $b[$this->sortBy]) ? 1 : -1; } } diff --git a/tests/coverage/index.php b/tests/coverage/index.php index e0290ba69..fbbe13b25 100644 --- a/tests/coverage/index.php +++ b/tests/coverage/index.php @@ -39,7 +39,7 @@ $revision = $svn_info[1]; <body> <h1>Coverage report for Doctrine</h1> <p>Report generated against revision <?php echo $reporter->getRevision(); ?> current HEAD revision is <?php echo $revision ?>.</p> - <p>Default mode shows results sorted by percentage. This can be changed with GET variables:<br /> <ul><li>order = covered|total|maybe|notcovered|percentage</li><li>desc=true</li></ul></p> + <p>Default mode shows results sorted by percentage with highest first. Customize the ordering with the following GET parameters:<br /> <ul><li>order = covered|total|maybe|notcovered|percentage</li><li>flip=true</li></ul></p> <table> <tr> <th></th>