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

Merge pull request #539 from gabriel-caruso/phpunit

Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase
This commit is contained in:
Emanuil Rusev 2017-11-14 22:44:03 +02:00 committed by GitHub
commit fbe3fe878f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 30 additions and 17 deletions

View File

@ -1,18 +1,27 @@
language: php language: php
php: dist: trusty
- 7.1 sudo: false
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- nightly
matrix: matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: nightly
- php: hhvm
- php: hhvm-nightly
fast_finish: true fast_finish: true
allow_failures: allow_failures:
- php: nightly - php: nightly
- php: hhvm-nightly
sudo: false before_script:
- composer install --prefer-dist --no-interaction --no-progress
script:
- vendor/bin/phpunit

View File

@ -15,6 +15,9 @@
"require": { "require": {
"php": ">=5.3.0" "php": ">=5.3.0"
}, },
"require-dev": {
"phpunit/phpunit": "^4.8.35"
},
"autoload": { "autoload": {
"psr-0": {"Parsedown": ""} "psr-0": {"Parsedown": ""}
} }

View File

@ -5,4 +5,4 @@
<file>test/ParsedownTest.php</file> <file>test/ParsedownTest.php</file>
</testsuite> </testsuite>
</testsuites> </testsuites>
</phpunit> </phpunit>

View File

@ -8,7 +8,10 @@
* @link http://commonmark.org/ CommonMark * @link http://commonmark.org/ CommonMark
* @link http://git.io/8WtRvQ JavaScript test runner * @link http://git.io/8WtRvQ JavaScript test runner
*/ */
class CommonMarkTest extends PHPUnit_Framework_TestCase
use PHPUnit\Framework\TestCase;
class CommonMarkTest extends TestCase
{ {
const SPEC_URL = 'https://raw.githubusercontent.com/jgm/stmd/master/spec.txt'; const SPEC_URL = 'https://raw.githubusercontent.com/jgm/stmd/master/spec.txt';

View File

@ -1,6 +1,8 @@
<?php <?php
class ParsedownTest extends PHPUnit_Framework_TestCase use PHPUnit\Framework\TestCase;
class ParsedownTest extends TestCase
{ {
final function __construct($name = null, array $data = array(), $dataName = '') final function __construct($name = null, array $data = array(), $dataName = '')
{ {

View File

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