public function testCanCreateTheEventStoreTable()
 {
     $this->statement->expects($this->once())->method('execute');
     $this->eventStore->createTable();
 }
 private function createTables()
 {
     $eventStore = new PdoEventStore(self::$pdo);
     $eventStore->createTable();
 }
 /**
  * Create the event store table.
  */
 public function install()
 {
     $eventStore = new PdoEventStore($this->pdo);
     $eventStore->createTable();
 }