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