be($this->user()); $this->call('GET', '/help/index'); $this->assertResponseStatus(200); } /** * @covers FireflyIII\Http\Controllers\HelpController::show */ public function testShowNoRoute() { $this->be($this->user()); $this->call('GET', '/help/indxxex'); $this->assertResponseStatus(200); } }