wrap() public méthode

public wrap ( object $value = null ) : Subject
$value object
Résultat Subject
 /**
  * @param ExampleNode            $example
  * @param Specification $context
  * @param MatcherManager         $matchers
  * @param CollaboratorManager    $collaborators
  */
 public function prepare(ExampleNode $example, Specification $context, MatcherManager $matchers, CollaboratorManager $collaborators)
 {
     $subjectFactory = new Wrapper($matchers, $this->presenter, $this->dispatcher, $example, $this->accessInspector);
     $subject = $subjectFactory->wrap(null);
     $subject->beAnInstanceOf($example->getSpecification()->getResource()->getSrcClassname());
     $context->setSpecificationSubject($subject);
 }
Exemple #2
0
 /**
  * @param mixed $value
  *
  * @return Subject
  */
 private function wrap($value)
 {
     return $this->wrapper->wrap($value);
 }