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