assertSame('\\' . Order::class, $namespacedClassname); $this->assertTrue( class_exists($namespacedClassname), sprintf('Assertion failed that "%s" class exists', $namespacedClassname) ); $this->markTestIncomplete( 'Test of "Order" model has not been implemented yet.' ); } /** * Test attribute "id" */ public function testPropertyId() { $this->markTestIncomplete( 'Test of "id" property in "Order" model has not been implemented yet.' ); } /** * Test attribute "petId" */ public function testPropertyPetId() { $this->markTestIncomplete( 'Test of "petId" property in "Order" model has not been implemented yet.' ); } /** * Test attribute "quantity" */ public function testPropertyQuantity() { $this->markTestIncomplete( 'Test of "quantity" property in "Order" model has not been implemented yet.' ); } /** * Test attribute "shipDate" */ public function testPropertyShipDate() { $this->markTestIncomplete( 'Test of "shipDate" property in "Order" model has not been implemented yet.' ); } /** * Test attribute "status" */ public function testPropertyStatus() { $this->markTestIncomplete( 'Test of "status" property in "Order" model has not been implemented yet.' ); } /** * Test attribute "complete" */ public function testPropertyComplete() { $this->markTestIncomplete( 'Test of "complete" property in "Order" model has not been implemented yet.' ); } /** * Test getOpenApiSchema static method * @covers ::getOpenApiSchema */ public function testGetOpenApiSchema() { $schemaArr = Order::getOpenApiSchema(); $this->assertIsArray($schemaArr); } }