PHPUNIT如何将当前类转换为另一个文件

时间:2013-04-02 11:27:12

标签: phpunit

我有一个由其他php文件调用的公共类A. 我希望将当前类的名称输入A类。

此处 A类

class A extends PHPUnit_Framework_TestCase
{

............................

public static function setUpBeforeClass()
{

try {
**Here the function to get the class**  ??????
    self::$selenium = new ObjetConnexion();
    self::$tab_castest= array();
    self::$nbjeu = -1;
 } catch (Testing_Selenium_Exception $e) {
        echo $e;
    }
}

}

B类:     BTest类扩展了A.     {

protected function setUp()
{
    ...

}
public function testConnexion()
{  
......
}
}

phpunit.xml的内容:

    

  <file>Nouveaux_services/BTest.php</file>
  <file>Nouveaux_services/CTest.php</file>
  <file>Nouveaux_services/DTest.php</file>

</testsuite>

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

您可以使用get_called_class()

获取被调用的类

http://php.net/manual/en/function.get-called-class.php