Example #1
0
 public function test_deleteConversions_RemovesConversionsAndConversionItems()
 {
     $this->logDeleter->deleteConversions(array(2, 3));
     $this->assertConversionsNotExists(2);
     $this->assertConversionsNotExists(3);
     $this->assertVisitExists(1);
     $this->assertVisitExists(2, $checkAggregates = false);
     $this->assertVisitExists(3, $checkAggregates = false);
     $this->assertVisitExists(4);
 }