TopUserTest added.

This commit is contained in:
Alexey Skobkin 2017-01-09 23:58:15 +03:00
parent 9ec1dce9ab
commit 7dc621a452
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<?php
namespace Tests\Skobkin\PointToolsBundle\DTO;
use Skobkin\Bundle\PointToolsBundle\DTO\TopUserDTO;
class TopUserTest extends \PHPUnit_Framework_TestCase
{
public function testCreate()
{
return new TopUserDTO('testuser', 3);
}
/**
* @depends testCreate
*/
public function testGetLogin(TopUserDTO $topUser)
{
$this->assertInternalType('string', $topUser->getLogin());
$this->assertEquals('testuser', $topUser->getLogin());
}
/**
* @depends testCreate
*/
public function testGetSubscribersCount(TopUserDTO $topUser)
{
$this->assertInternalType('int', $topUser->getSubscribersCount());
$this->assertEquals(3, $topUser->getSubscribersCount());
}
}