markTestIncomplete( 'Test of "addPet" method has not been implemented yet.' ); } /** * Test case for deletePet * * Deletes a pet. * * @covers ::deletePet */ public function testDeletePet() { $this->markTestIncomplete( 'Test of "deletePet" method has not been implemented yet.' ); } /** * Test case for findPetsByStatus * * Finds Pets by status. * * @covers ::findPetsByStatus */ public function testFindPetsByStatus() { $this->markTestIncomplete( 'Test of "findPetsByStatus" method has not been implemented yet.' ); } /** * Test case for findPetsByTags * * Finds Pets by tags. * * @covers ::findPetsByTags */ public function testFindPetsByTags() { $this->markTestIncomplete( 'Test of "findPetsByTags" method has not been implemented yet.' ); } /** * Test case for getPetById * * Find pet by ID. * * @covers ::getPetById */ public function testGetPetById() { $this->markTestIncomplete( 'Test of "getPetById" method has not been implemented yet.' ); } /** * Test case for updatePet * * Update an existing pet. * * @covers ::updatePet */ public function testUpdatePet() { $this->markTestIncomplete( 'Test of "updatePet" method has not been implemented yet.' ); } /** * Test case for updatePetWithForm * * Updates a pet in the store with form data. * * @covers ::updatePetWithForm */ public function testUpdatePetWithForm() { $this->markTestIncomplete( 'Test of "updatePetWithForm" method has not been implemented yet.' ); } /** * Test case for uploadFile * * uploads an image. * * @covers ::uploadFile */ public function testUploadFile() { $this->markTestIncomplete( 'Test of "uploadFile" method has not been implemented yet.' ); } }