在it_is_initializable上找不到phpspec类

时间:2014-06-19 08:06:07

标签: symfony testing phpspec

我正在使用phpspec重构symfony2应用程序。 但是当我尝试测试它时,我在第一步中一直得到同样的错误。

bin/phpspec run -v
Test/Bundle/TestBundle/Service/TestService
36  ! it is initializable
  class TestRepository not found.

   0 vendor/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php:58
     throw new Prophecy\Exception\Doubler\ClassNotFoundException("Class TestRepository"...)
   1 vendor/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php:63
     Prophecy\Doubler\LazyDouble->setParentClass("TestRepository")

我在前面使用了正确的命名空间,并将let()添加到我的规范中。

use Test\Bundle\TestBundle\Service\TestService;
class TestServiceSpec extends ObjectBehavior
{
/**
 * @param TestRepository $repository
 */
function let(
    TestRepository $repository,
)
{
    $this->beConstructedWith($repository, $validator, $eventDay, $log);
}

/**
 *
 */
function it_is_initializable()
{
    $this->shouldHaveType('Test\Bundle\TestBundle\Service\TestService');
}

我的服务:

use Test\Bundle\TestBundle\Repository\TestRepository;

/**
 * Test service class.
 */
class TestService
{
    /**
     * Repository
     * @var \Test\Bundle\TestBundle\Repository\TestRepository
     */
    protected $repository;

    /**
     * Constructor.
     *
     * @param TestRepository $repository   Doctrine mongodb object mapper.
     */
    public function __construct(TestRepository $repository)
    {
        $this->repository = $repository;
    }

我不知道出了什么问题,并且在互联网/ stackoverflow上找不到任何资源。 Thnx提前为您提供帮助:)

1 个答案:

答案 0 :(得分:-1)

也许您忘记了规范文件中的use指令:

use Test\Bundle\TestBundle\Repository\TestRepository;

class TestServiceSpec
{
   ...