7

我可能在这里遗漏了一些东西,但我有一个非常简单的帮助类来创建一个目录:

// Helper class

<?php namespace MyApp\Helpers;

    use User;
    use File;

    class FileSystemHelper
    {
        protected $userBin = 'users/uploads';

        public function createUserUploadBin(User $user)
        {
            $path = $this->userBin . '/' . $user->id;

            if ( ! File::isDirectory($path))
            {
                File::makeDirectory($path);
            }
        }
    }

以及相关的测试:

// Associated test class

<?php 

    use MyApp\Helpers\FileSystemHelper;

    class FileSystemHelperTest extends TestCase {

        protected $fileSystemHelper;

        public function setUp()
        {
            $this->fileSystemHelper = new FileSystemHelper;
        }

        public function testNewUploadBinCreatedWhenNotExists()
        {
            $user = new User; // this would be mocked

            File::shouldReceive('makeDirectory')->once();

            $this->fileSystemHelper->createUserUploadBin($user);
        }
    }

但是,运行测试时出现致命错误:

PHP 致命错误:在 /my/app/folder/app/tests/lib/myapp/helpers/FileSystemHelperTest.php 中找不到类“文件”

我查看了模拟外观的文档,但我看不出哪里出错了。有什么建议么?

谢谢

4

2 回答 2

24

我在文档中错过了这个:

注意:如果您定义自己的 setUp 方法,请务必调用 parent::setUp。

打电话解决了这个问题。嗬!

于 2013-06-25T12:18:18.043 回答
4

这是因为在使用外观之前未加载 laravel 框架,或者因为您没有使用 laravel php 单元(TestCase 类)这是一个示例代码,用于测试应用程序////attention to extends from TestCase not ()

/**
 * TEST CASE the application.
 *
 */
class TestCase extends Illuminate\Foundation\Testing\TestCase {

    /**
     * Creates the application.
     *
     * @return \Symfony\Component\HttpKernel\HttpKernelInterface
     */
    public function createApplication()
    {
        $unitTesting = true;

        $testEnvironment = 'testing';

        //this line boot the laravel framework so all facades are in your hand
        return require __DIR__.'/../../bootstrap/start.php';
   }

}

于 2015-02-28T10:39:30.393 回答