芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/shimoda/vendor/ircmaxell/security-lib/test/Unit/Core/BigMath/GMPTest.php
markTestSkipped('BCMath is not loaded'); } } /** * @dataProvider provideAddTest */ public function testAdd($left, $right, $expected) { $obj = new \SecurityLib\BigMath\GMP; $this->assertEquals($expected, $obj->add($left, $right)); } /** * @dataProvider provideSubtractTest */ public function testSubtract($left, $right, $expected) { $obj = new \SecurityLib\BigMath\GMP; $this->assertEquals($expected, $obj->subtract($left, $right)); } }