forked from loafle/openapi-generator-original
		
	It's reported by phpstan as `Dynamic call to static method PHPUnit\Framework\Assert::markTestIncomplete().`. The method is static, therefore it should not be called from instance context.
		
			
				
	
	
		
			137 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			137 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * PetTest
 | 
						|
 *
 | 
						|
 * PHP version 8.1
 | 
						|
 *
 | 
						|
 * @category Class
 | 
						|
 * @package  OpenAPI\Client
 | 
						|
 * @author   OpenAPI Generator team
 | 
						|
 * @link     https://openapi-generator.tech
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Echo Server API
 | 
						|
 *
 | 
						|
 * Echo Server API
 | 
						|
 *
 | 
						|
 * The version of the OpenAPI document: 0.1.0
 | 
						|
 * Contact: team@openapitools.org
 | 
						|
 * @generated Generated by: https://openapi-generator.tech
 | 
						|
 * OpenAPI Generator version: 7.0.1-SNAPSHOT
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 | 
						|
 * https://openapi-generator.tech
 | 
						|
 * Please update the test case below to test the model.
 | 
						|
 */
 | 
						|
 | 
						|
namespace OpenAPI\Client\Test\Model;
 | 
						|
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * PetTest Class Doc Comment
 | 
						|
 *
 | 
						|
 * @category    Class
 | 
						|
 * @description Pet
 | 
						|
 * @package     OpenAPI\Client
 | 
						|
 * @author      OpenAPI Generator team
 | 
						|
 * @link        https://openapi-generator.tech
 | 
						|
 */
 | 
						|
class PetTest extends TestCase
 | 
						|
{
 | 
						|
 | 
						|
    /**
 | 
						|
     * Setup before running any test case
 | 
						|
     */
 | 
						|
    public static function setUpBeforeClass(): void
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Setup before running each test case
 | 
						|
     */
 | 
						|
    public function setUp(): void
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Clean up after running each test case
 | 
						|
     */
 | 
						|
    public function tearDown(): void
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Clean up after running all test cases
 | 
						|
     */
 | 
						|
    public static function tearDownAfterClass(): void
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test "Pet"
 | 
						|
     */
 | 
						|
    public function testPet()
 | 
						|
    {
 | 
						|
        // TODO: implement
 | 
						|
        self::markTestIncomplete('Not implemented');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test attribute "id"
 | 
						|
     */
 | 
						|
    public function testPropertyId()
 | 
						|
    {
 | 
						|
        // TODO: implement
 | 
						|
        self::markTestIncomplete('Not implemented');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test attribute "name"
 | 
						|
     */
 | 
						|
    public function testPropertyName()
 | 
						|
    {
 | 
						|
        // TODO: implement
 | 
						|
        self::markTestIncomplete('Not implemented');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test attribute "category"
 | 
						|
     */
 | 
						|
    public function testPropertyCategory()
 | 
						|
    {
 | 
						|
        // TODO: implement
 | 
						|
        self::markTestIncomplete('Not implemented');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test attribute "photo_urls"
 | 
						|
     */
 | 
						|
    public function testPropertyPhotoUrls()
 | 
						|
    {
 | 
						|
        // TODO: implement
 | 
						|
        self::markTestIncomplete('Not implemented');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test attribute "tags"
 | 
						|
     */
 | 
						|
    public function testPropertyTags()
 | 
						|
    {
 | 
						|
        // TODO: implement
 | 
						|
        self::markTestIncomplete('Not implemented');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test attribute "status"
 | 
						|
     */
 | 
						|
    public function testPropertyStatus()
 | 
						|
    {
 | 
						|
        // TODO: implement
 | 
						|
        self::markTestIncomplete('Not implemented');
 | 
						|
    }
 | 
						|
}
 |