/** * @test * @return void */ public function noneThrowsExceptionForGet() { $this->setExpectedException('RuntimeException'); $none = new None(); $none->get(); }