使用Codeception和Laravel4找不到模型类

时间:2014-02-17 11:19:05

标签: php testing laravel-4 codeception

我正在关注tutsplus的课程:https://tutsplus.com/lesson/laravel-gotchas/但我在本课中遇到错误:https://tutsplus.com/lesson/laravel-gotchas/

错误是我正在尝试创建Post类型的对象(Post是Laravel中的模型)但是在运行代码测试时我有下一条消息:

laravel : codecept run
Codeception PHP Testing Framework v1.8.3
Powered by PHPUnit 3.7.31 by Sebastian Bergmann.

Acceptance Tests (1) ------------------------------------------------
Trying to perform actions and see result (SigninCept.php)       Ok
---------------------------------------------------------------------

Functional Tests (2) -------------------------------------------------



FATAL ERROR. TESTS NOT FINISHED.
Class 'Post' not found 
in laravel/app/tests/functional/PostCest.php:9

这是我的测试PostCest.php

<?php
use \TestGuy;

class PostCest
{

    public function _before()
    {
    }

    public function _after()
    {
    }

    // tests
    public function tryToTest(TestGuy $I) {
       $post = new Post;
       $post->title = 'Some title';
       $post->body = 'Some title';
       $post->save();
   }

}

这是我的Post课程:

<?php

class Post extends Eloquent {
    protected $guarded = array();

    public static $rules = array();
}

1 个答案:

答案 0 :(得分:0)

很简单,您的应用程序中没有定义名为“Post”的类。

你认为这堂课应该在哪里?

您可能需要检查以确保您没有为帖子类命名,并且需要执行类似

的操作
new \Namespace\Post;

编辑:尝试将post.php更改为Post.php。几个月前我遇到了一个问题,那就是我的服务器在文件名中没有很好地处理大写字母