protected function setUp()
 {
     $this->query = $this->getMock('Symfony\\Bridge\\Propel1\\Tests\\Fixtures\\ItemQuery', array('filterById'), array(), '', true, true, true, false, true);
     $this->query->expects($this->any())->method('filterById')->with($this->anything())->will($this->returnSelf());
     $this->createItems();
     ItemQuery::$result = array($this->item1, $this->item2, $this->item3, $this->item4);
     parent::setUp();
 }