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