Пример #1
0
 /**
  * @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;
 }
Пример #2
0
 /**
  * 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;
 }
Пример #3
0
 /**
  * @param \Box\TestScribe\Config\Options $options
  * @param \Box\TestScribe\Config\ConfigParams $inputParams
  *
  * @return \Box\TestScribe\Config\ConfigParams
  */
 public function getOutputParams(Options $options, ConfigParams $inputParams)
 {
     $inFullClassName = $inputParams->getFullClassName();
     $outFullClassName = $inFullClassName . 'GenTest';
     $outPhpClassName = new PhpClassName($outFullClassName);
     $outSimpleClassName = $outPhpClassName->getClassName();
     $outSourceFileDir = $options->getOutSourceFileDir();
     $outSourceFilePath = $outSourceFileDir . DIRECTORY_SEPARATOR . $outSimpleClassName . '.php';
     $overwriteExistingDestinationFile = $options->isOverwriteExistingDestinationFile();
     $methodName = $inputParams->getMethodName();
     $specPerClass = $this->savedSpecs->loadExistingSpecs($inputParams, $outSourceFileDir);
     $outTestMethodName = $this->outputTestNameGetter->getTestName($methodName, $overwriteExistingDestinationFile, $specPerClass);
     $outputParams = new ConfigParams($outSourceFilePath, $outPhpClassName, $outTestMethodName);
     return $outputParams;
 }
 /**
  * @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;
 }