Skip to content

Commit 969f15e

Browse files
committed
PHP7対応
1 parent a3002ed commit 969f15e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

phpunit.xml.dist

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<phpunit backupGlobals="false"
3-
backupStaticAttribute="false"
43
colors="true"
54
convertErrorsToExceptions="true"
65
convertNoticesToExceptions="true"
76
convertWarningsToExceptions="true"
87
processIsolation="false"
98
stopOnFailure="false"
10-
syntaxCheck="false">
9+
>
1110
<testsuite name="Test Suite">
1211
<directory>./tests</directory>
1312
</testsuite>

tests/SimplePaginationTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
require_once dirname(__DIR__).'/lib/SimplePagination/SimplePagination.php';
33

4-
class SimplePaginationTest extends PHPUnit_Framework_TestCase
4+
class SimplePaginationTest extends \PHPUnit\Framework\TestCase
55
{
66
public function test_construct()
77
{

0 commit comments

Comments
 (0)