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