Ejemplo n.º 1
0
 /**
  * Test if all transactions are marked as executed on migrate up
  *
  * @throws Resistance\Error\Error
  */
 public function testEverythingExecutedAfterMigrateUp()
 {
     $this->migrate();
     foreach ($this->migrations as $migration) {
         $this->assertTrue(Resistance::isMigrationExecuted($migration));
     }
 }