我尝试使用phpunit运行mongdodb的驱动程序测试,如http://www.php.net/manual/en/mongo.testing.php所述,但它似乎与MongoInt32Test.php文件有问题。
# phpunit tests/mongosuite.php
Warning: require_once(MongoInt32Test.php): failed to open stream: No such file or directory in C:\Documents and Settings\owner\Desktop\mongo-php-driver\tests\MongoSuite.php on line 4
Fatal error: require_once(): Failed opening required 'MongoInt32Test.php' (include_path='.;\programming_tools\xampp-portable\php\PEAR') in C:\Documents and Settings\owner\Desktop\mongo-php-driver\tests\MongoSuite.php on line 4
我正在使用php_mongo-1.3.1-5.4-vc9.dll并在windows xp中运行mongodb 2.0.8。有谁知道如何解决这个问题?我无法在任何地方找到MongoInt32Test.php。
答案 0 :(得分:0)
扩展中的PHPUnit测试是旧版测试,不再受支持。我创建了一张票PHP-695,以提醒我们从文档中删除它们。所有扩展测试都是phpt文件,执行它们的说明记录在GitHub repository。
中