/** * Test the `key` method. */ public function testKey() { $list = new SplDoublyLinkedList(); $list->push($this->getMock('\\com\\mohiva\\common\\parser\\Token')); $list->push($this->getMock('\\com\\mohiva\\common\\parser\\Token')); $list->rewind(); $stream = new TokenStream($list); $this->assertSame(0, $stream->key()); }