所以我在 PhpUnit 测试中有这个:
$alias_manager = $this->prophesize(AliasManagerInterface::class);
$alias_manager->cacheClear($source)->shouldBeCalledTimes(1);
我想告诉 Prophecy,这就是别名管理器应该被调用的所有内容,不应该调用其他方法,也不应该使用任何其他参数调用此方法。后者我可以
$alias_manager->cacheClear(Argument::any())->shouldBeCalledTimes(1);
但是我如何对预言说“没有别的”呢?