Proyectos de Subversion Moodle

Rev

Rev 11 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11 Rev 1441
Línea 30... Línea 30...
30
 * @package  core_grades
30
 * @package  core_grades
31
 * @category test
31
 * @category test
32
 * @author   Andrew Davis
32
 * @author   Andrew Davis
33
 * @license  http://www.gnu.org/copyleft/gpl.html GNU Public License
33
 * @license  http://www.gnu.org/copyleft/gpl.html GNU Public License
34
 */
34
 */
35
class edittreelib_test extends \advanced_testcase {
35
final class edittreelib_test extends \advanced_testcase {
36
    public function test_format_number(): void {
36
    public function test_format_number(): void {
37
        $numinput = array(0,   1,   1.01, '1.010', 1.2345);
37
        $numinput = array(0,   1,   1.01, '1.010', 1.2345);
38
        $numoutput = array(0.0, 1.0, 1.01,  1.01,   1.2345);
38
        $numoutput = array(0.0, 1.0, 1.01,  1.01,   1.2345);
Línea 39... Línea 39...
39
 
39