Inheritance: extends AbstractQuery
Beispiel #1
0
 /**
  * @group unit
  */
 public function testToArray()
 {
     $typeQuery = new Type('type_name');
     $expectedArray = array('type' => array('value' => 'type_name'));
     $this->assertEquals($expectedArray, $typeQuery->toArray());
 }