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