1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

update tests to reflect changes in phpunit 6.0

This commit is contained in:
Emanuil Rusev
2017-03-23 20:21:05 +02:00
parent 3fc442b078
commit 0a09d5ad45
3 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
<?php
include 'Parsedown.php';
include 'Parsedown.php';
if ( ! class_exists('\PHPUnit\Framework\TestCase') && class_exists('\PHPUnit_Framework_TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}