makeTestData(); Session::start(); $this->faker = \Faker\Factory::create(); Model::reguard(); } public function testCompanyGatewayPost() { $data = [ 'config' => 'random config', ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token ])->post('/api/v1/company_gateways', $data); $response->assertStatus(200); } public function testCompanyGatewayPut() { $data = [ 'config' => 'changed', ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token ])->put('/api/v1/company_gateways/'.$this->encodePrimaryKey($this->client->id), $data); $response->assertStatus(200); } public function testCompanyGatewayGet() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token ])->get('/api/v1/company_gateways/'.$this->encodePrimaryKey($this->client->id)); $response->assertStatus(200); } }