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