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

    525 2018-12-16 《PHPUnit 6.5 手册》
    assertJsonStringEqualsJsonFile() assertJsonStringEqualsJsonFile(mixed $expectedFile, mixed $actualJson[, string $message = '']) 当 $actualJson 对应的值与 $expectedFile 对应的值不匹配时报告...
  • assertArrayHasKey()

    602 2018-12-16 《PHPUnit 6.5 手册》
    assertArrayHasKey() assertArrayHasKey(mixed $key, array $array[, string $message = '']) 当 $array 不包含 $key 时报告错误,错误讯息由 $message 指定。 assertArrayNotHasKey() 是与之相反的断言,接受相同的参...
  • 7. 未完成的测试与跳过的测试

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

    Testing Introduction Environment Creating & Running Tests Testing Introduction Environment Creating & Running Tests Introduction Laravel is built with testing in m...
  • 3. 命令行测试执行器

    1031 2018-12-16 《PHPUnit 7.0 手册》
    3. 命令行测试执行器 命令行选项 3. 命令行测试执行器 PHPUnit 命令行测试执行器可通过 phpunit 命令调用。下面的代码展示了如何用 PHPUnit 命令行测试执行器来运行测试: $ phpunit ArrayTest PHPUnit 7 .0 . 0 by Sebastian Bergmann a...
  • assertEmpty()

    538 2018-12-16 《PHPUnit 6.5 手册》
    assertEmpty() assertEmpty(mixed $actual[, string $message = '']) 当 $actual 非空时报告错误,错误讯息由 $message 指定。 assertNotEmpty() 是与之相反的断言,接受相同的参数。 assertAttributeEmpty() 和 asse...
  • assertStringEndsWith()

    433 2018-12-16 《PHPUnit 6.5 手册》
    assertStringEndsWith() assertStringEndsWith(string $suffix, string $string[, string $message = '']) 当 $string 不以 $suffix 结尾时报告错误,错误讯息由 $message 指定。 assertStringEndsNotWit...
  • assertClassHasAttribute()

    530 2018-12-16 《PHPUnit 6.5 手册》
    assertClassHasAttribute() assertClassHasAttribute(string $attributeName, string $className[, string $message = '']) 当 $className::attributeName 不存在时报告错误,错误讯息由 $message 指定。 ...
  • 快速入门

    测试:入门指南 介绍 环境 创建并运行测试 Artisan 测试运行器 测试:入门指南 介绍 Laravel 天生就具有测试的基因。事实上,Laravel 默认就支持用 PHPUnit 来做测试,并为你的应用程序配置好了 phpunit.xml 文件。框架还提供了一些便利的辅助函数,让你可以更直观的测试你的应用程序。 默认...
  • assertIsReadable()

    551 2018-12-16 《PHPUnit 6.5 手册》
    assertIsReadable() assertIsReadable(string $filename[, string $message = '']) 当 $filename 所指定的文件或目录不可读时报告错误,错误讯息由 $message 指定。 assertNotIsReadable() 是与之相反的断言,并接受相同的参数。 ...