-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from phillipsdata/update-namespace
Updated namespace from `minphp\Pagination` to `Minphp\Pagination`
- Loading branch information
Showing
3 changed files
with
59 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
<?php | ||
namespace minphp\Pagination; | ||
namespace Minphp\Pagination\Tests; | ||
|
||
use \PHPUnit_Framework_TestCase; | ||
use Minphp\Pagination\Pagination; | ||
use PHPUnit_Framework_TestCase; | ||
|
||
/** | ||
* @coversDefaultClass \minphp\Pagination\Pagination | ||
* @coversDefaultClass \Minphp\Pagination\Pagination | ||
*/ | ||
class PaginationTest extends PHPUnit_Framework_TestCase | ||
{ | ||
/** | ||
* @covers ::__construct | ||
* @covers ::mergeArrays | ||
* @uses \minphp\Pagination\Pagination::setGet | ||
* @uses \Minphp\Pagination\Pagination::setGet | ||
*/ | ||
public function testConstruct() | ||
{ | ||
$this->assertInstanceOf('\minphp\Pagination\Pagination', new Pagination()); | ||
$this->assertInstanceOf('\Minphp\Pagination\Pagination', new Pagination()); | ||
} | ||
} |