/**
  * @test
  */
 public function getValuesWithSimpleParams()
 {
     $this->controller->getValuesAsJson();
     $subgroup = $font = $type = $variety = $origin = $destiny = 1;
     $dataParam = new DataParam($subgroup, $font, $type, $variety, $origin, $destiny);
     $this->assertEquals($this->simpleQueryJsonExpected(), $this->controller->getValuesWithSimpleParams($dataParam, array(1, 2)));
 }