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