ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilMathBCAdapterTest.php
Go to the documentation of this file.
1<?php
2
20{
24 protected function setUp(): void
25 {
26 if (!extension_loaded('bcmath')) {
27 $this->markTestSkipped('Could not execute test due to missing bcmath extension!');
28 return;
29 }
30 $this->mathAdapter = new ilMathBCMathAdapter();
31 parent::setUp();
32 }
33
37 public static function powData(): array
38 {
39 return array_merge([
40 ['2', '64', '18446744073709551616', null],
41 ], parent::powData());
42 }
43}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...