assertInternalType('string', $topUser->login); $this->assertEquals('testuser', $topUser->login); } /** * @depends testCreate */ public function testGetSubscribersCount(TopUserDTO $topUser) { $this->assertInternalType('int', $topUser->subscribersCount); $this->assertEquals(3, $topUser->subscribersCount); } }