书栈网 · BookStack 本次搜索耗时 0.035 秒,为您找到 573 个相关结果.
  • 创建新的组件

    创建新的组件 创建新的组件 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

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

    418 2021-03-28 《PHPUnit v8.5 Manual》
    2. Annotations @author @after @afterClass @backupGlobals @backupStaticAttributes @before @beforeClass @codeCoverageIgnore* @covers @coversDefaultClass @coversNothing @da...
  • 6. 有风险的测试

    458 2021-03-28 《PHPUnit v9.5 手册》
    6. 有风险的测试 无用测试 意外的代码覆盖 测试执行期间产生的输出 测试执行时长的超时限制 全局状态篡改 6. 有风险的测试 在执行测试时,PHPUnit 可以进行一些额外的检查,见下文。 无用测试 默认情况下,PHPUnit 会更严格地对待事实上不测试任何内容的测试。此项检查可以用命令行 选项 --dont-report-usel...
  • Getting Started

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

    Testing: Getting Started Introduction Environment Creating & Running Tests Testing: Getting Started Introduction Environment Creating & Running Tests Introduction ...
  • 2. 标注

    447 2021-03-28 《PHPUnit v9.5 手册》
    2. 标注 @author @after @afterClass @backupGlobals @backupStaticAttributes @before @beforeClass @codeCoverageIgnore* @covers @coversDefaultClass @coversNothing @dataProvide...
  • 目录结构

    目录结构 基本结构 多应用 目录结构 Testing Is Documentation tests/Docs/Started/DirectoryDoc.php QueryPHP 遵循 “约定优于配置” 的原则,主张通过领域驱动设计来构建更可靠的软件。 基本结构 下面是整个应用基本目录结构,系统结构可以自由定义。 . ├── ...
  • 单元测试

    635 2018-05-10 《GroupCo文档》
    单元测试 测试建议,我们建议对聚合层与服务层统一做单元测试的编写。(数据库环境的配置,建议在config下面新增test配置文件,来跑单元测试) 聚合层测试示例 service测试服务的配置 服务层测试 单独测试服务层流程 测试聚合层与服务层流程 单元测试 PHPUNIT本身是不支持异步框架的测试的,我们在使用PHPUNIT时,做了一些...