eloquent-phpunit icon indicating copy to clipboard operation
eloquent-phpunit copied to clipboard

Eloquent model and database schema PHPUnit test case

Results 2 eloquent-phpunit issues
Sort by recently updated
recently updated
newest added
trafficstars

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