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