eloquent-phpunit
eloquent-phpunit copied to clipboard
bigInt type is unknown
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 asserting that Doctrine\DBAL\Types\BigIntType Object () is an instance of class "Doctrine\DBAL\Types\IntegerType".
vendor/erikgall/eloquent-phpunit/src/Database/Column.php:188 vendor/erikgall/eloquent-phpunit/src/Database/Column.php:253 vendor/erikgall/eloquent-phpunit/src/Database/Column.php:225 vendor/erikgall/eloquent-phpunit/src/Database/Column.php:159
This should be add: $this->table->column('id')->bigIncrements();