mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Added composer config, added IO/error tests using phpunit * Added ApiGen doc comments * Added test to ensure last_error is not set from loading up the CRT
10 lines
299 B
PHP
10 lines
299 B
PHP
<?php
|
|
|
|
// Ensure any version of PHPUnit works, since phpunit5 is the last one that
|
|
// works with PHP5.6
|
|
if (!class_exists('PHPUnit_Framework_TestCase') &&
|
|
class_exists('\\PHPUnit\\Framework\\TestCase')) {
|
|
abstract class PHPUnit_Framework_TestCase extends \PHPUnit\Framework\TestCase {
|
|
}
|
|
}
|