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