eloquent-phpunit
eloquent-phpunit copied to clipboard
Eloquent model and database schema PHPUnit test case
Migration: public function up() { Schema::create('user', function (Blueprint $table) { $table->bigIncrements('id'); }); } Test: public function testDatabase() { $this->table->column('id')->increments(); } Result: The id column is not of type Doctrine\DBAL\Types\IntegerType Failed...
Error: Call to a member function seedDatabase() on null vendor/erikgall/eloquent-phpunit/src/DatabaseTestHelper.php:103 vendor/erikgall/eloquent-phpunit/src/DatabaseTestHelper.php:81