assertSame('\\' . Pet::class, $namespacedClassname); $this->assertTrue( class_exists($namespacedClassname), sprintf('Assertion failed that "%s" class exists', $namespacedClassname) ); $this->markTestIncomplete( 'Test of "Pet" model has not been implemented yet.' ); } /** * Test attribute "id" */ public function testPropertyId() { $this->markTestIncomplete( 'Test of "id" property in "Pet" model has not been implemented yet.' ); } /** * Test attribute "category" */ public function testPropertyCategory() { $this->markTestIncomplete( 'Test of "category" property in "Pet" model has not been implemented yet.' ); } /** * Test attribute "name" */ public function testPropertyName() { $this->markTestIncomplete( 'Test of "name" property in "Pet" model has not been implemented yet.' ); } /** * Test attribute "photoUrls" */ public function testPropertyPhotoUrls() { $this->markTestIncomplete( 'Test of "photoUrls" property in "Pet" model has not been implemented yet.' ); } /** * Test attribute "tags" */ public function testPropertyTags() { $this->markTestIncomplete( 'Test of "tags" property in "Pet" model has not been implemented yet.' ); } /** * Test attribute "status" */ public function testPropertyStatus() { $this->markTestIncomplete( 'Test of "status" property in "Pet" model has not been implemented yet.' ); } /** * Test getOpenApiSchema static method * @covers ::getOpenApiSchema */ public function testGetOpenApiSchema() { $schemaArr = Pet::getOpenApiSchema(); $this->assertIsArray($schemaArr); } }