MathPHP\AlgebraTest::testLCM PHP Method

testLCM() public method

public testLCM ( integer $a, integer $b, integer $lcm )
$a integer
$b integer
$lcm integer
    public function testLCM(int $a, int $b, int $lcm)
    {
        $this->assertEquals($lcm, Algebra::lcm($a, $b));
    }