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