markTestIncomplete( 'Test of "Name" model has not been implemented yet.' ); } /** * Test attribute "name" */ public function testPropertyName() { $this->markTestIncomplete( 'Test of "name" property in "Name" model has not been implemented yet.' ); } /** * Test attribute "snakeCase" */ public function testPropertySnakeCase() { $this->markTestIncomplete( 'Test of "snakeCase" property in "Name" model has not been implemented yet.' ); } /** * Test attribute "property" */ public function testPropertyProperty() { $this->markTestIncomplete( 'Test of "property" property in "Name" model has not been implemented yet.' ); } /** * Test attribute "_123number" */ public function testProperty123number() { $this->markTestIncomplete( 'Test of "_123number" property in "Name" model has not been implemented yet.' ); } /** * Test getOpenApiSchema static method * @covers ::getOpenApiSchema */ public function testGetOpenApiSchema() { $schemaObject = Name::getOpenApiSchema(); $schemaArr = Name::getOpenApiSchema(true); $this->assertIsObject($schemaObject); $this->assertIsArray($schemaArr); } }