Beispiel #1
0
 /**
  * @return Group
  */
 public function where()
 {
     if (is_null($this->where)) {
         $this->where = new Group();
         $this->where->setStatement($this);
     }
     return $this->where;
 }
Beispiel #2
0
 /**
  * Test that the getFieldFactory() method returns expected factory by default.
  */
 public function testThatGetGroupFactoryReturnsExpectedFactoryByDefault()
 {
     $this->markTestSkipped('Move this to the FactoryUtilizingTraitTest.');
     $group = new Group();
     $this->assertInstanceOf('SliQ\\Group\\Factory', $group->getGroupFactory());
 }