assertTrue(true); } public function testPOST() { $response = $this->json('POST', '/api/company', [ 'company_name'=>'testing', 'registration_no'=>'testing', 'tax_no'=>'testing', 'tel_no'=>'testing', 'fax'=>'testing', 'address'=>'testing', 'city'=>'testing', 'postcode'=>'testing', 'state'=>'testing', 'country'=>'testing', 'contact_person'=>'testing', ]); $response->assertStatus(201); } public function testPUT() { $response = $this->json('PUT', '/api/company/1', [ 'company_name'=>'testing', 'registration_no'=>'testing', 'tax_no'=>'testing', 'tel_no'=>'testing', 'fax'=>'testing', 'address'=>'testing', 'city'=>'testing', 'postcode'=>'testing', 'state'=>'testing', 'country'=>'testing', 'contact_person'=>'testing', ]); $response->assertStatus(200); } }