书栈网 · BookStack 本次搜索耗时 0.046 秒,为您找到 573 个相关结果.
  • Getting Started

    Testing: Getting Started Introduction Environment Creating & Running Tests Artisan Test Runner Testing: Getting Started Introduction Environment Creating & Running Tests...
  • 3. The Command-Line Test Runner

    480 2021-03-28 《PHPUnit v9.5 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....
  • 7. 未完成的测试与跳过的测试

    784 2018-12-14 《PHPUnit v4.8 手册》
    第 7 章 未完成的测试与跳过的测试 未完成的测试 跳过测试 用 @requires 来跳过测试 第 7 章 未完成的测试与跳过的测试 未完成的测试 开始写新的测试用例类时,可能想从写下空测试方法开始,比如: public function testSomething () { } 以此来跟踪需要编写的测试。空测试的问题...
  • assertContains()

    701 2018-12-16 《PHPUnit v4.8 手册》
    assertContains() assertContains(mixed $needle, Iterator|array $haystack[, string $message = '']) 当 $needle 不是 $haystack 的元素时报告错误,错误讯息由 $message 指定。 assertNotContains() ...
  • 创建新的组件

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

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

    3. Annotations @author @after @afterClass @backupGlobals @backupStaticAttributes @before @beforeClass @codeCoverageIgnore* @covers @coversDefaultClass @coversNothing @da...
  • 2. Annotations

    307 2021-03-28 《PHPUnit v9.5 Manual》
    2. Annotations @author @after @afterClass @backupGlobals @backupStaticAttributes @before @beforeClass @codeCoverageIgnore* @covers @coversDefaultClass @coversNothing @da...
  • 2. Annotations

    414 2021-03-28 《PHPUnit v8.5 Manual》
    2. Annotations @author @after @afterClass @backupGlobals @backupStaticAttributes @before @beforeClass @codeCoverageIgnore* @covers @coversDefaultClass @coversNothing @da...
  • assertNan()

    581 2018-12-16 《PHPUnit 6.5 手册》
    assertNan() assertNan(mixed $variable[, string $message = '']) 当 $variable 不是 NAN 时报告错误,错误讯息由 $message 指定。 例 A.38: assertNan() 的用法 <? php use PHPUnit \Framework\Test...