书栈网 · BookStack 本次搜索耗时 0.038 秒,为您找到 573 个相关结果.
  • assertContainsOnly()

    522 2018-12-16 《PHPUnit 6.5 手册》
    assertContainsOnly() assertContainsOnly(string $type, Iterator|array $haystack[, boolean $isNativeType = null, string $message = '']) 当 $haystack 并非仅包含类型为 $type 的变量时报告错误,...
  • 6. 有风险的测试

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

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

    504 2021-03-28 《PHPUnit v8.5 Manual》
    3. The XML Configuration File The <phpunit> Element The backupGlobals Attribute The backupStaticAttributes Attribute The bootstrap Attribute The cacheResult Attribute The ...
  • Step 17: Testing

    Step 17: Testing Testing Writing Unit Tests Writing Functional Tests for Controllers Configuring the Test Environment Working with a Test Database Defining Fixtures Loading F...
  • 3. The XML Configuration File

    621 2021-03-28 《PHPUnit v9.5 Manual》
    3. The XML Configuration File The <phpunit> Element The backupGlobals Attribute The backupStaticAttributes Attribute The bootstrap Attribute The cacheResult Attribute The ...
  • 7. 未完成的测试与跳过的测试

    841 2018-12-16 《PHPUnit 7.0 手册》
    7. 未完成的测试与跳过的测试 未完成的测试 跳过测试 用 @requires 来跳过测试 7. 未完成的测试与跳过的测试 未完成的测试 开始写新的测试用例类时,可能想从写下空测试方法开始,比如: public function testSomething () { } 以此来跟踪需要编写的测试。空测...
  • 3. The Command-Line Test Runner

    222 2023-03-19 《PHPUnit v9.6 Manual》
    3. The Command-Line Test Runner Command-Line Options TestDox 3. The Command-Line Test Runner The PHPUnit command-line test runner can be invoked through the phpunit command. ...
  • Session 会话

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

    855 2018-12-16 《PHPUnit v4.8 手册》
    assertEquals() assertEquals(mixed $expected, mixed $actual[, string $message = '']) 当两个变量 $expected 和 $actual 不相等时报告错误,错误讯息由 $message 指定。 assertNotEquals() 是与之相反的断言,接受...