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