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