assertSame(2, $list->get(1)); } public function testNotFound() { $this->expectException(MadLispException::class); $this->expectExceptionMessage('list does not contain index 3'); $list = new MList([1, 2, 3]); $list->get(3); } }