generate() public method

Generates a list of parameters and objects from the given set of data.
public generate ( FixtureSet $fixtureSet ) : ObjectSet
$fixtureSet FixtureSet
return ObjectSet Contains the parameters and objects built from the loaded and injected ones.
Beispiel #1
0
 /**
  * @inheritdoc
  */
 public function loadData(array $data, array $parameters = [], array $objects = []) : ObjectSet
 {
     $fixtureSet = $this->builder->build($data, $parameters, $objects);
     return $this->generator->generate($fixtureSet);
 }