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