File "XTestCase.php"
Full Path: /home/elegucvf/public_html/video/wp-content/plugins/one-click-demo-import/vendor/yoast/phpunit-polyfills/src/TestCases/XTestCase.php
File size: 2.78 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Yoast\PHPUnitPolyfills\TestCases;
use PHPUnit\Framework\TestCase as PHPUnit_TestCase;
use Yoast\PHPUnitPolyfills\Helpers\AssertAttributeHelper;
use Yoast\PHPUnitPolyfills\Polyfills\AssertClosedResource;
use Yoast\PHPUnitPolyfills\Polyfills\AssertEqualsSpecializations;
use Yoast\PHPUnitPolyfills\Polyfills\AssertFileEqualsSpecializations;
use Yoast\PHPUnitPolyfills\Polyfills\AssertIgnoringLineEndings;
use Yoast\PHPUnitPolyfills\Polyfills\AssertionRenames;
use Yoast\PHPUnitPolyfills\Polyfills\AssertIsList;
use Yoast\PHPUnitPolyfills\Polyfills\AssertIsType;
use Yoast\PHPUnitPolyfills\Polyfills\AssertObjectEquals;
use Yoast\PHPUnitPolyfills\Polyfills\AssertObjectProperty;
use Yoast\PHPUnitPolyfills\Polyfills\AssertStringContains;
use Yoast\PHPUnitPolyfills\Polyfills\EqualToSpecializations;
use Yoast\PHPUnitPolyfills\Polyfills\ExpectExceptionMessageMatches;
use Yoast\PHPUnitPolyfills\Polyfills\ExpectExceptionObject;
/**
* Basic test case for use with PHPUnit cross-version.
*
* This test case uses renamed methods for the `setUpBeforeClass()`, `setUp()`, `tearDown()`
* and `tearDownAfterClass()` methods to get round the signature change in PHPUnit 8.
*
* When using this TestCase, overloaded fixture methods need to use the `@beforeClass`, `@before`,
* `@after` and `@afterClass` annotations.
* The naming of the overloaded methods is open as long as the method names don't conflict with
* the PHPUnit native method names.
*/
abstract class XTestCase extends PHPUnit_TestCase {
use AssertAttributeHelper;
use AssertClosedResource;
use AssertEqualsSpecializations;
use AssertFileEqualsSpecializations;
use AssertIgnoringLineEndings;
use AssertionRenames;
use AssertIsList;
use AssertIsType;
use AssertObjectEquals;
use AssertObjectProperty;
use AssertStringContains;
use EqualToSpecializations;
use ExpectExceptionMessageMatches;
use ExpectExceptionObject;
/**
* This method is called before the first test of this test class is run.
*
* @beforeClass
*
* @codeCoverageIgnore
*
* @return void
*/
public static function setUpFixturesBeforeClass() {
parent::setUpBeforeClass();
}
/**
* Sets up the fixture, for example, open a network connection.
*
* This method is called before each test.
*
* @before
*
* @return void
*/
protected function setUpFixtures() {
parent::setUp();
}
/**
* Tears down the fixture, for example, close a network connection.
*
* This method is called after each test.
*
* @after
*
* @return void
*/
protected function tearDownFixtures() {
parent::tearDown();
}
/**
* This method is called after the last test of this test class is run.
*
* @afterClass
*
* @codeCoverageIgnore
*
* @return void
*/
public static function tearDownFixturesAfterClass() {
parent::tearDownAfterClass();
}
}