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