public function setWith($value) { parent::setWith($value); $this->value = $value; $this->isSet = true; return $this; }
public function setWith($class) { parent::setWith($class); try { $this->class = $this->getReflectionClass($class); } catch (\exception $exception) { $this->fail($this->_('Class \'%s\' does not exist', $class)); } $this->pass(); return $this; }
public function setWith($stream) { parent::setWith($stream); $this->streamController = atoum\mock\stream::get($stream); return $this; }