public function testIsManyPerClick()
 {
     $stats_report = new \ebussola\ads\reports\statsreport\StatsReport();
     for ($i = 0; $i <= 100; $i++) {
         $stats = new \stdClass();
         $stats->convRate = rand(1, 10);
         $stats->conversions = rand(1, 50);
         $stats->costConv = rand(1, 50);
         $stats = new \ebussola\ads\reports\adwords\stats\AbstractStats($stats);
         $stats_report->addStats($stats);
     }
     $stats_report = new \ebussola\ads\reports\adwords\statsreport\StatsReport($stats_report);
     $stats_report->refreshValues();
     $this->assertFalse($stats_report->isOnePerClick());
     $this->assertTrue($stats_report->isManyPerClick());
 }