Running phpunit tests using HHVM (HipHop)

前端 未结 3 1380
误落风尘
误落风尘 2021-02-20 16:29

I am trying to run PHPUnit unit tests via HHVM on a virtual Ubuntu 12.04 (64-bit Server) install. The tests usually run using a phpunit.xml file located in my tests directory, w

3条回答
  •  后悔当初
    2021-02-20 17:15

    Just a note to add to @cabbey's asnwer: you can set the IncludeSearchPaths value using the -v option:

    hhvm -v Server.IncludeSearchPaths.share=/usr/share/php/ $(which phpunit) MyTests.php
    

提交回复
热议问题