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