PUGX\StatsBundle\Tests\FunctionalControllerTest::testOnDownloadsActionStatisticShouldBeCreated PHP Method

testOnDownloadsActionStatisticShouldBeCreated() public method

    public function testOnDownloadsActionStatisticShouldBeCreated()
    {
        $client = static::createClient();
        static::$kernel->getContainer()->set('packagist_client', $this->packagistClient);
        ob_start();
        $client->request('GET', '/pugx/badge-poser/d/total');
        ob_clean();
        $this->checkStatsCalls($client, 'pugx/badge-poser', 'downloadsAction');
        ob_end_flush();
    }