phpunit
-
-
In PHPUnit, how do I mock parent methods? I want to test a class method that calls upon a parent method with the same name. Is there a way to do this?
-
ZF2 - Mocking service requested in Module.php I am trying to test a controller of my ZF2 application. Suppose this controller is in my module. To post some code, this is what I am doing at the moment bootstrap.php
-
What is the difference between createMock and getMockBuilder in phpUnit? For the love of my life I can't figure out the difference between and I am going through the original documentation and there is just a one liner which I didn't understand. ... you can use the getMockBuilder($type) method to customize the test doubl
-
PHP 和带有小数的单元测试断言 我有一个返回浮点数的方法,如1.234567890.我想测试它是否真的这样做。但是,似乎此返回的浮点数在不同平台上具有不同的精度,因此我如何断言返回值为1.23456789?如果我只是做: 然后,在
-
使用 PHPUnit 模拟对象,是否有可能期望调用一个神奇的 __call() 方法? 我在测试中有一个模拟对象。真正的对象 PageRepository 使用 __call() 实现了一个神奇的方法,因此,如果您调用 $pageRepository->findOneByXXXX($value_of_field_XXXX),它将在数据库中搜索与该参数匹配的
-
使用 PhpStorm 在 Docker 容器中运行 PHPUnit 我想配置我的PhpStorm IDE在我的Docker容器中运行PHPUnit测试。 似乎我被限制使用本地PHP可执行文件,或者通过SSH作为测试的解释器。 我可以在我的PHP容器上安装SSH服务,但它似乎是一个有点黑客
-
设置 PHPUnit Mock 后,是否可以更改该方法? 我正在尝试在 setUp 中创建一个模拟实例,其中包含所有被覆盖方法的默认值,然后在几个不同的测试中,根据我正在测试的内容更改某些方法的返回值,而无需设置整个 Mock。有没有办法做到这
-
PHPUnit 等于在具有 delta 的日期上 我在PHPUnit中遇到了一个问题,我想在比较日期时使用equalTo方法中的delta参数。假设我想将日期视为相等,如果它们在不超过10秒内相差。$some_delta的适当值是多少?10?10000?还是完全不同的东西?
-
PHPUnit & Behat;补充还是替代? 我一直在寻找SO和谷歌,但我真的无法得到一个明确的答案。 PHPUnit是一个用于单元测试的框架,就像JUnit一样。我使用它,也与硒扩展结合使用进行功能测试。当浏览周围时,我看到Behat / Mink不
标签