1 命令
PHPUnit 3.4.15 by Sebastian Bergmann.
Usage: phpunit [switches] UnitTest [UnitTest.php]
phpunit [switches] <directory>
--log-junit <file> Log test execution in JUnit XML format to file.
--log-tap <file> Log test execution in TAP format to file.
--log-json <file> Log test execution in JSON format.
--coverage-html <dir> Generate code coverage report in HTML format.
--coverage-clover <file> Write code coverage data in Clover XML format.
--coverage-source <dir> Write code coverage / source data in XML format.
--story-html <file> Write Story/BDD results in HTML format to file.
--story-text <file> Write Story/BDD results in Text format to file.
--testdox-html <file> Write agile documentation in HTML format to file.
--testdox-text <file> Write agile documentation in Text format to file.
--filter <pattern> Filter which tests to run.
--group ... Only runs tests from the specified group(s).
--exclude-group ... Exclude tests from the specified group(s).
--list-groups List available test groups.
--loader <loader> TestSuiteLoader implementation to use.
--repeat <times> Runs the test(s) repeatedly.
--story Report test execution progress in Story/BDD format.
--tap Report test execution progress in TAP format.
--testdox Report test execution progress in TestDox format.
--colors Use colors in output.
--stderr Write to STDERR instead of STDOUT.
--stop-on-failure Stop execution upon first error or failure.
--verbose Output more verbose information.
--wait Waits for a keystroke after each test.
--skeleton-class Generate Unit class for UnitTest in UnitTest.php.
--skeleton-test Generate UnitTest class for Unit in Unit.php.
--process-isolation Run each test in a separate PHP process.
--no-globals-backup Do not backup and restore $GLOBALS for each test.
--static-backup Backup and restore static attributes for each test.
--syntax-check Try to check source files for syntax errors.
--bootstrap <file> A "bootstrap" PHP file that is run before the tests.
--configuration <file> Read configuration from XML file.
--no-configuration Ignore default configuration file (phpunit.xml).
--include-path <path(s)> Prepend PHP's include_path with given path(s).
-d key[=value] Sets a php.ini value.
--help Prints this usage information.
--version Prints the version and exits.
2 sample 1:
DependencyFailureTest.php:
<!--<br/ /><br/ />Code highlighting produced by Actipro CodeHighlighter (freeware)<br/ />http://www.CodeHighlighter.com/<br/ /><br/ />--><?php
class DependencyFailureTest extends PHPUnit_Framework_TestCase
{
public function testOne()
{
$this->assertTrue(true);
}
/**
* @depends testOne
*/
public function testTwo()
{
$this->assertTrue(false);
}
/**
* @depends testTwo
*/
public function testThree()
{
$this->assertTrue(true);
}
public function testFour()
{
$this->assertTrue(true);
}
/**
* @depends testFive
*/
public function testSix()
{
$this->assertTrue(true);
}
}
/*
1 "@depends testTwo" 该注释标明testThree方法依赖于testTwo测试通过才行,否则会被skip。
2 testFour方法没有@depends的注释,所以不依赖于某个方法
3 testSix方法依赖于 testFive 测试通过才行,但是不存在testFive方法,所以也被skip
*/
?>
运行:D:\www2\phpunit>phpunit --verbose DependencyFailureTest
结果:
PHPUnit 3.4.15 by Sebastian Bergmann.
DependencyFailureTest
.FSS
Time: 0 seconds, Memory: 4.00Mb
There was 1 failure:
1) DependencyFailureTest::testTwo
Failed asserting that <boolean:false> is true.
D:\www2\phpunit\DependencyFailureTest.php:14
There were 2 skipped tests:
1) DependencyFailureTest::testThree
This test depends on "DependencyFailureTest::testTwo" to pass.
2) DependencyFailureTest::testSix
This test depends on "DependencyFailureTest::testFive" to pass.
FAILURES!
Tests: 3, Assertions: 3, Failures: 1, Skipped: 2.
分享到:
相关推荐
至于“工具”,这可能指的是与PHPUnit相关的工具和扩展,如代码覆盖率工具(如`php-code-coverage`),持续集成(CI)/持续部署(CD)工具(如Jenkins、Travis CI)中的集成,以及代码质量检查工具(如PHPStan、 ...
当涉及到压缩包中的"PHPUnit"文件名列表时,这可能是指包含了一些特定的 PHPUnit 相关文件,如配置文件(phpunit.xml)、测试类文件(*.php)、 fixtures(模拟数据)或者自定义测试助手类。这些文件对于理解旧版本...
`WAMP下安装PEAR和PHPUnit - ruby97的专栏 - 博客频道 - CSDN.NET_files`可能是一些相关的图片或辅助资源。 安装完成后,了解如何使用PEAR和phpUnit也很关键。PEAR主要用于引入和管理类库,而phpUnit则用于编写和...
- **测试套件和分组**:组织测试用例为测试套件,可以方便地运行一组相关的测试,也可以通过分组来筛选运行特定的测试。 总的来说,安装和使用PHPUnit是提高PHP项目质量的重要步骤。理解并熟练运用这些知识点,能...
- 可以通过文件系统的结构来组织测试,如将相关的测试放在同一个目录下。 - **用XML配置来编排测试套件**: 也可以使用XML配置文件来定义测试套件的结构和执行顺序。 #### 七、严格模式 - **无用测试**: 避免编写...
- **定义测试套件:**通过`PHPUnit\Framework\TestSuite`类定义一组相关的测试用例集合。 - **加载测试:**使用`discoverTests()`方法自动发现并加载测试文件。 **套件级装配器:** - **初始化和清理:**可以定义`...
7. **测试套件组织**:测试套件的组织有助于管理多个相关测试,可以使用套件级装配器来设置全局的测试环境。 8. **扩展测试用例**:允许开发者自定义和扩展PHPUnit的基础测试用例,以适应特定的项目需求。 9. **...
**错误相关信息的输出** - **调试信息**:在测试失败时输出更多信息以帮助调试。 - **示例**: ```php public function testSomeFunction() { $result = some_function(); $this->assertEquals(expected_value...
PHPUnit(PHP 单元测试框架)简介 PHPUnit是一个轻量级的PHP测试框架。... 单元测试是几个现代敏捷开发方法的基础,使得PHPUnit成为许多大型PHP项目的关键工具。这个工具也可以被Xdebug扩展...相关阅读 同类推荐:程序框架
- **便捷安装方案**:使用集成开发环境(IDE),例如XAMPP,该软件包含了PHP及其相关工具,包括PHPUnit,非常方便。 总之,接口自动化测试是现代软件开发中的一个重要组成部分,它不仅提高了测试效率,还确保了接口...
执行完命令后,会显示PHPUnit的相关信息,例如: ```bash D:\zend\zendserver\bin\phpunit --version phpunit 3.6.10 by Sebastian Bergmann unrecognized option --e() ``` 此时,PHPUnit已经成功安装。 ##...
测试套件是一组相关的测试用例,它们可以一起执行。在 PHPUnit 中,可以使用 `@covers` 注解来指定测试方法覆盖的代码段。通过运行 `phpunit` 命令,可以执行整个测试套件: ```shell vendor/bin/phpunit ``` ### ...
PHPUnit PHPUnit是一个面向程序员PHP测试框架。 它是用于单元测试框架的xUnit体系结构的一个实例。 安装 我们分发了一个 ,该文件具有捆绑在单个文件中...请参阅以获取有关如何为PHPUnit及其相关项目做出贡献的信息。
3. **DbUnit**:DbUnit是PHPUnit的一个扩展,专门处理与数据库相关的测试。它提供了数据集的概念,可以将XML或CSV格式的数据导入到数据库中,然后在测试后恢复原始状态,保证了测试的隔离性。 4. **数据准备**:...
Amp标签表明了这个扩展与Amp库密切相关。Amp是PHP异步编程的重要工具,它的目标是让开发者能够轻松地构建高性能的、响应式的Web应用。通过使用Amp,开发者可以避免传统阻塞I/O操作导致的性能瓶颈,实现更高效的...
标签中提到了“JavaScript”,虽然主要讨论的是PHP相关的测试工具,但考虑到WordPress经常结合JavaScript进行前端交互,这个标签可能意味着wp-phpunit-helpers也考虑到了JavaScript测试,或者至少为JavaScript测试...
在测试数据库相关的功能时,你需要考虑使用数据库事务或者临时数据库,确保每次测试开始时都有一个已知的初始状态,测试结束后再回滚或清理数据,以避免不同测试之间的数据干扰。 除了基本的断言,如`assertEquals...