public function testAverageWorks() { $this->collection[] = (object) array('prop' => 1); $this->collection[] = (object) array('prop' => 2); $this->assertSame(1.5, $this->collection->average('prop')); }