/** * This method tests the "pow" method. * * @dataProvider data_pow */ public function test_pow(array $provided, array $expected) { $p0 = IFloat\Module::pow(IFloat\Type::box($provided[0]), IInt32\Type::box($provided[1])); $e0 = $expected[0]; $this->assertInstanceOf('\\Saber\\Data\\IFloat\\Type', $p0); $this->assertSame($e0, $p0->unbox()); }