2015-10-20 72 views

回答

5

我建議你使用phpunit group annotation用於標記的類/方法和標記組從主排除測試套件。 您可以閱讀this article作爲進一步參考。

作爲例子,你可以在你的測試類做如下:

class 1 extends PHPUnit_Framework_TestCase 
{ 
    /** 
    * @group excludeMe 
    */ 
    public function testSomething() 
    { 
    } 

    public function testSomethingElseDoNotExclude() 
    { 
    } 

... 

} 

,並添加組被排除在phpunit.xml文件,例如:

<phpunit 
.... 
> 
    .... 
    <groups> 
     <exclude> 
      <group>excludeMe</group> 
     </exclude> 
    </groups> 
</phpunit> 

更多關於組信息在xml annotation reference和搜索<groups>

希望這個幫助

相關問題