是否真的需要使用此.xml.dist文件

时间:2013-08-18 22:17:31

标签: php magento selenium phpstorm

我们已经使用Selenium一段时间了,并且由于某种原因它很多时间断开了,当我们调试时,我的团队中的人经常被咀嚼,他创建了安装Selenium的有点分步指南和Magewnto TAF关于我使用从原始phpunit.xml.dist复制的phpunit.xml文件

他说我们使用.dist文件,而且我的Selenium和Magento TAF之所以不再在Firefox中工作的原因是因为我不做什么他这样做,另一方面,我总是相信像。[EXT] .bak文件,。[EXT] .dist文件只是用于分发,是默认设置,想要自定义设置的人会复制和删除.dist并使用它,他认为我错了是phpunit.xml.dist用于Magento TAF

使用Ransack我发现[ROOT]\framework\tests\unit\tests\Mage\Selenium\Helper\FileTest.php中只有一个用于phpunit.xml.dist的功能

/**
 * @covers Mage_Selenium_Helper_File::loadYamlFile
 * @depends test__construct
 *
 * @expectedException InvalidArgumentException
 */
public function testLoadYamlFileException()
{
    $fileHelper = new Mage_Selenium_Helper_File($this->_config);
    $this->assertFalse($fileHelper->loadYamlFile(SELENIUM_TESTS_BASEDIR . DIRECTORY_SEPARATOR . 'phpunit.xml.dist'));
}

现在我的编程知识是建立在我业余时间开发游戏的基础上的,所以我通常看到.dist文件在公共脚本和系统中使用,他们说要自定义复制并从文件中删除.dist,< / p>

我想知道,鉴于上述功能,有什么理由为什么我 HAVE 使用phpunit.xml.dist而不是复制它,删除最后的.dist并使我的更改,我还应该注意我们使用PHP Storm来运行测试,所以我们使用Defined in the configuration file选项来控制我们运行/调试的集合

0 个答案:

没有答案