Skip to content
Advertisement

PHPUnit: “Class ‘Eloquent’ not found” when using @dataProvider

I’m running into an issue when writing unit tests with PHPUnit using @dataProvider in a Laravel app. The error I’m receiving is:

PHP Fatal error: Class ‘Eloquent’ not found in /path/to/project/app/models/ExampleClass.php on line 7

It looks like the constant used in the dataProvider is causing the fatal.

composer.json:

JavaScript

phpunit.xml:

JavaScript

The example model:

JavaScript

The example test class:

JavaScript

Stack trace:

JavaScript

Advertisement

Answer

I’m having this exact issue. It has to do with the fact that the Laravel aliases (e.g. Config::, Log::…) have not been loaded at the time that the @dataProvider method is called. There are two solutions here that I can think of here.

Solution 1

Modify your @dataProvider so that it doesn’t use the model class. In my case, I was creating model objects in the @dataProvider method, like this:

JavaScript

Since the Person class is referenced in the @dataProvider method, it’s going to attempt to load that class. Then it will fail because the Eloquent class alias hasn’t been created by Laravel yet.

To get around this, I could just return the data, and create the actual model objects in the test itself:

JavaScript

In your case, that would mean returning [['true']], instead of [[ExampleClass::TRUE]].

Solution 2

I see no compelling reason to use the Eloquent class alias here. In fact, I don’t know why it exists at all (except perhaps that it “looks” better?). I brought this up in the IRC channel, and didn’t get a response… So if there’s a reason to use the alias here, then I don’t know it.

That said, if your model class extends the underlying IlluminateDatabaseEloquentModel class instead of the Eloquent alias, then your tests will start working as-is.

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement