markTestIncomplete( 'Test of "ApiResponse" model has not been implemented yet.' ); } /** * Test attribute "code" */ public function testPropertyCode() { $this->markTestIncomplete( 'Test of "code" property in "ApiResponse" model has not been implemented yet.' ); } /** * Test attribute "type" */ public function testPropertyType() { $this->markTestIncomplete( 'Test of "type" property in "ApiResponse" model has not been implemented yet.' ); } /** * Test attribute "message" */ public function testPropertyMessage() { $this->markTestIncomplete( 'Test of "message" property in "ApiResponse" model has not been implemented yet.' ); } /** * Test getOpenApiSchema static method * @covers ::getOpenApiSchema */ public function testGetOpenApiSchema() { $schemaObject = ApiResponse::getOpenApiSchema(); $schemaArr = ApiResponse::getOpenApiSchema(true); $this->assertIsObject($schemaObject); $this->assertIsArray($schemaArr); } }