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