书栈网 · BookStack 本次搜索耗时 0.037 秒,为您找到 573 个相关结果.
  • 7. 未完成的测试与跳过的测试

    455 2021-03-28 《PHPUnit v9.5 手册》
    7. 未完成的测试与跳过的测试 未完成的测试 跳过测试 用 @requires 来跳过测试 7. 未完成的测试与跳过的测试 未完成的测试 开始写新的测试用例类时,可能想从写下空测试方法开始,比如: public function testSomething (): void { } 以此来跟踪需要编写的测试。空测试...
  • assertSame()

    597 2018-12-16 《PHPUnit 6.5 手册》
    assertSame() assertSame(mixed $expected, mixed $actual[, string $message = '']) 当两个变量 $expected 和 $actual 的值与类型不完全相同时报告错误,错误讯息由 $message 指定。 assertNotSame() 是与之相反的断言,接...
  • 2. Annotations

    221 2023-03-19 《PHPUnit v9.6 Manual》
    2. Annotations @author @after @afterClass @backupGlobals @backupStaticAttributes @before @beforeClass @codeCoverageIgnore* @covers @coversDefaultClass @coversNothing @da...
  • 创建新的组件

    创建新的组件 创建新的组件 Hyperf 官方提供了工具来快速创建组件包。 composer create - project hyperf / component - creater your_component dev - master 执行结果如下: $ composer create - project hyperf / comp...
  • 6. 有风险的测试

    784 2018-12-16 《PHPUnit 7.0 手册》
    6. 有风险的测试 无用测试 意外的代码覆盖 测试执行期间产生的输出 测试执行时长的超时限制 全局状态篡改 6. 有风险的测试 在执行测试时,PHPUnit 可以进行一些额外的检查,见下文。 无用测试 PHPUnit 可以更严格对待事实上不测试任何内容的测试。此项检查可以用命令行选项 —report-useless-tests 或...
  • 8. Test Doubles

    239 2023-03-19 《PHPUnit v9.6 Manual》
    8. Test Doubles Stubs Mock Objects Prophecy Mocking Traits and Abstract Classes Stubbing and Mocking Web Services 8. Test Doubles Gerard Meszaros introduces the concept of ...
  • 3. The Command-Line Test Runner

    3. The Command-Line Test Runner Outcome and Issues Command-Line Options Configuration Selection Execution Isolation Risky Tests Automatically stop when … Exit with error code...
  • Session 会话

    Session 会话 简介 依赖 贡献组件代码 运行测试 通过 Composer 命令运行测试 通过 PHPUnit 命令运行测试 Session 会话 简介 Session 组件提供 HTTP 服务下的 Session 会话支持,目前仅实现了 Redis 驱动下的 Session 储存支持,由于 Swoft 的设计理念更倾向于分布式...
  • Getting Started

    Testing: Getting Started Introduction Environment Creating & Running Tests Testing: Getting Started Introduction Environment Creating & Running Tests Introduction ...
  • 8. Test Doubles

    459 2021-03-28 《PHPUnit v8.5 Manual》
    8. Test Doubles Stubs Mock Objects Prophecy Mocking Traits and Abstract Classes Stubbing and Mocking Web Services 8. Test Doubles Gerard Meszaros introduces the concept of...