Example #1
0
 public function testAvgEmpty()
 {
     $collection = new Collection();
     $avg = $collection->avg('id');
     //Assertions
     $this->assertEquals(null, $avg);
 }