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

    971 2018-12-16 《PHPUnit 6.5 手册》
    assertInstanceOf() assertInstanceOf($expected, $actual[, $message = '']) 当 $actual 不是 $expected 的实例时报告错误,错误讯息由 $message 指定。 assertNotInstanceOf() 是与之相反的断言,接受相同的参数。 as...
  • assertGreaterThanOrEqual()

    482 2018-12-16 《PHPUnit 6.5 手册》
    assertGreaterThanOrEqual() assertGreaterThanOrEqual(mixed $expected, mixed $actual[, string $message = '']) 当 $actual 的值不大于且不等于 $expected 的值时报告错误,错误讯息由 $message 指定。 asser...
  • 7. 未完成的测试与跳过的测试

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

    2. Attributes Test TestDox DoesNotPerformAssertions Code Coverage CoversClass CoversFunction CoversNothing UsesClass UsesFunction CodeCoverageIgnore Data Provide...
  • 9. Code Coverage Analysis

    255 2023-03-19 《PHPUnit v9.6 Manual》
    9. Code Coverage Analysis Software Metrics for Code Coverage Including Files Ignoring Code Blocks Specifying Covered Code Parts Edge Cases 9. Code Coverage Analysis Wikipe...
  • Getting Started

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

    Testing Testing The PHPUnit Testing Framework Types of Tests Unit Tests Integration Tests Set-up your Test Environment Customizing Environment Variables Retrieving Services i...
  • Testing

    Testing Testing The PHPUnit Testing Framework Types of Tests Unit Tests Integration Tests Set-up your Test Environment Customizing Environment Variables Retrieving Services i...
  • assertContainsOnlyInstancesOf()

    489 2018-12-16 《PHPUnit 6.5 手册》
    assertContainsOnlyInstancesOf() assertContainsOnlyInstancesOf(string $classname, Traversable|array $haystack[, string $message = '']) 当 $haystack 并非仅包含类 $classname 的实例时报告错误,...
  • assertNull()

    453 2018-12-16 《PHPUnit 6.5 手册》
    assertNull() assertNull(mixed $variable[, string $message = '']) 当 $actual 不是 null 时报告错误,错误讯息由 $message 指定。 assertNotNull() 是与之相反的断言,接受相同的参数。 例 A.39: assertNull() 的使用 ...