Beispiel #1
0
 /**
  * This method tests the "ge" method.
  *
  * @dataProvider data_ge
  */
 public function test_ge(array $provided, array $expected)
 {
     $p0 = IChar\Module::ge(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());
 }