/** * @param \Box\TestScribe\Config\ConfigParams $params * * @return \Box\TestScribe\MethodInfo\Method */ public function getMethodObjFromParamObj(ConfigParams $params) { $inPhpClassName = $params->getPhpClassName(); $inPhpClass = new PhpClass($inPhpClassName); $methodName = $params->getMethodName(); $inMethodObj = $this->methodHelper->createFromMethodName($inPhpClass, $methodName); return $inMethodObj; }
/** * Load and save the existing tests/specs into the member variable. * Call this method first before using other methods of this class. * * @param \Box\TestScribe\Config\ConfigParams $inputParams * @param string $outSourceFileDir * * @return \Box\TestScribe\Spec\SpecsPerClass */ public function loadExistingSpecs(ConfigParams $inputParams, $outSourceFileDir) { $specFilePath = StaticConfigHelper::computeSpecFilePath($inputParams->getPhpClassName(), $outSourceFileDir); $this->specFilePath = $specFilePath; $inFullClassName = $inputParams->getFullClassName(); $this->specPerClass = $this->specPersistence->loadSpec($specFilePath, $inFullClassName); $this->methodName = $inputParams->getMethodName(); return $this->specPerClass; }
/** * @param \Box\TestScribe\Config\ConfigParams $inputParams * @param \Box\TestScribe\MethodInfo\Method $inMethod * @param \Box\TestScribe\Config\Options $options * @param \Box\TestScribe\Config\ConfigParams $outputParams */ function __construct(ConfigParams $inputParams, Method $inMethod, Options $options, ConfigParams $outputParams) { $this->inPhpClassName = $inputParams->getPhpClassName(); $this->inMethod = $inMethod; $this->inSourceFile = $inputParams->getSourceFile(); $this->outPhpClassName = $outputParams->getPhpClassName(); $this->outSourceFile = $outputParams->getSourceFile(); $this->outMethodName = $outputParams->getMethodName(); $this->overwriteExistingDestinationFile = $options->isOverwriteExistingDestinationFile(); $this->testFileRoot = $options->getTestRootPath(); $this->sourceFilePathRelativeToSourceRoot = $options->getSourceFilePathRelativeToSourceRoot(); $this->generateSpec = $options->isGenerateSpec(); $this->outSourcePath = $options->getOutSourceFileDir(); $this->specFilePath = StaticConfigHelper::computeSpecFilePath($this->inPhpClassName, $this->outSourcePath); $this->options = $options; }