0

这听起来像一个简单的问题,我是 PHPUnit 的新手,但是我已经查看了文档,但似乎不知道该怎么说:

assert($class instanceof MongoClient || $class instanceof Mongo);

那是伪代码,但希望它是有意义的。

我发现最接近它的是:http ://www.phpunit.de/manual/current/en/writing-tests-for-phpunit.html#writing-tests-for-phpunit.assertions.assertContainsOnlyInstancesOf

所以我认为这在 PHPUnit 中是不支持的。有没有好的解决方法或者我需要自己做这个?

4

1 回答 1

0

assert在 PHPUnit 中只需要一个布尔值。

您在伪代码中的内容非常好。

于 2013-01-02T19:36:17.317 回答