ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilMathTest.php
Go to the documentation of this file.
1 <?php
2 
20 
24 class ilMathTest extends TestCase
25 {
26  protected EvalMath $eval_math;
27 
31  protected function setUp(): void
32  {
33  $this->eval_math = new EvalMath();
34  }
35 
39  public function testGcd(string $a, string $b, string $result): void
40  {
41  $this->assertEquals($result, ilMath::getGreatestCommonDivisor($a, $b));
42  }
43 
47  public static function gcdData(): array
48  {
49  return [
50  ['1254', '5298', '6'],
51  ['41414124', '41414124', '41414124']
52  ];
53  }
54 }
static gcdData()
Definition: ilMathTest.php:47
EvalMath $eval_math
Definition: ilMathTest.php:26
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static getGreatestCommonDivisor($a, $b)
testGcd(string $a, string $b, string $result)
gcdData
Definition: ilMathTest.php:39