Skip to content

Commit

Permalink
Merge branch 'MDL-29173_calc' of git://github.com/andyjdavis/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Jun 4, 2012
2 parents 4db0616 + eb9f06f commit 6f337ea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/evalmath/evalmath.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class EvalMath {
'sin','sinh','arcsin','asin','arcsinh','asinh',
'cos','cosh','arccos','acos','arccosh','acosh',
'tan','tanh','arctan','atan','arctanh','atanh',
'sqrt','abs','ln','log','exp','floor','ceil','round');
'sqrt','abs','ln','log','exp','floor','ceil');

var $fc = array( // calc functions emulation
'average'=>array(-1), 'max'=>array(-1), 'min'=>array(-1),
Expand Down
17 changes: 17 additions & 0 deletions lib/tests/mathslib_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ public function test__error_handling() {
}

public function test_rounding_function() {

// Rounding to the default number of decimal places
// The default == 0

$formula = new calc_formula('=round(2.5)');
$this->assertEquals($formula->evaluate(), 3);

Expand Down Expand Up @@ -196,6 +200,19 @@ public function test_rounding_function() {
$formula = new calc_formula('=floor(-2.5)');
$this->assertEquals($formula->evaluate(), -3);

// Rounding to an explicit number of decimal places

$formula = new calc_formula('=round(2.5, 1)');
$this->assertEquals($formula->evaluate(), 2.5);

$formula = new calc_formula('=round(2.5, 0)');
$this->assertEquals($formula->evaluate(), 3);

$formula = new calc_formula('=round(1.2345, 2)');
$this->assertEquals($formula->evaluate(), 1.23);

$formula = new calc_formula('=round(123.456, -1)');
$this->assertEquals($formula->evaluate(), 120);
}

public function test_scientific_notation() {
Expand Down

0 comments on commit 6f337ea

Please sign in to comment.