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