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