MINOR Added basic tests for Percentage

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@71414 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2009-02-05 02:33:00 +00:00
parent da18862083
commit 88720f07c5

View File

@ -0,0 +1,47 @@
<?php
/**
* @package sapphire
* @subpackage tests
*/
class PercentageTest extends SapphireTest {
function testNice() {
/* Test the default Nice() output of Percentage */
$cases = array(
'0.01' => '1.00%',
'0.10' => '10.00%',
'1' => '100.00%',
'1.5' => '150.00%',
'1.5000' => '150.00%',
'1.05' => '105.00%',
'1.0500' => '105.00%',
'0.95' => '95.00%'
);
foreach($cases as $original => $expected) {
$percentage = new Percentage('Probability');
$percentage->setValue($original);
$this->assertEquals($expected, $percentage->Nice());
}
}
function testCustomPrecision() {
/* Set a precision that's different from the default with Nice() output */
$cases = array(
'0.01' => '1%',
'0.1' => '10%',
'1' => '100%',
'1.5' => '150%',
'1.05' => '105%',
'1.0500' => '105%'
);
foreach($cases as $original => $expected) {
$percentage = new Percentage('Probability', 2);
$percentage->setValue($original);
$this->assertEquals($expected, $percentage->Nice());
}
}
}
?>