0

嗨伙计们

我正在尝试将 php 文件中的函数包含到我的 phpunittest 中。

当我不包括它时,它工作正常。我已经尝试了一些不同的解决方案,我在谷歌搜索时发现......

没有错误消息,甚至没有开始运行测试。

我想要这样的东西:

这应该是 mappingfunction.php 中包含的函数

<?php
  public function mapping(string catname)
  {
    echo ($catname);

  } ?>

这应该是 PhpUnit 测试:

<?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');

  }
}  ?>

为什么它不起作用?我能做些什么呢?

谢谢

4

1 回答 1

0

不带斜线的作品:)

require_once 'mappingfunction.php' ;
于 2012-05-29T11:47:34.237 回答