Hy guys
我正在尝试将php文件中的函数包含到我的phpunittest中。
当我不包括它时,它工作正常。 googleing时我已经尝试了一些不同的解决方案...
没有错误消息,甚至没有开始运行测试。
我想要这样的东西:
这应该是mappingfunction.php中包含的函数
<?php
public function mapping(string catname)
{
echo ($catname);
} ?>
这应该是PhpUnit-test:
<?php
require_once '/mappingfunction.php' ;
class Example extends PHPUnit_Extensions_SeleniumTestCase
{
protected function setUp()
{
$this->setBrowser("firefox");
$this->setBrowserUrl("http://www.google.com");
$this->setHost("localhost");
$this->setPort(4444);
}
public function testMyTestCase()
{
mapping('blabla');
}
} ?>
为什么不起作用?我该怎么做呢?
由于
答案 0 :(得分:0)
没有斜线:)
require_once 'mappingfunction.php' ;