public function setUp()
 {
     $this->conn = \DoctrineExtensions\Workflow\TestHelper::getConnection();
     $this->options = new WorkflowOptions('test_', null, null, $this->createSerializer());
     TestHelper::createSchema($this->options);
     $this->manager = new WorkflowManager($this->conn, $this->options);
 }
 public function setUp()
 {
     parent::setUp();
     $this->conn = \DoctrineExtensions\Workflow\TestHelper::getConnection();
     $this->options = new WorkflowOptions('test_');
     TestHelper::createSchema($this->options);
     $this->dbStorage = new DefinitionStorage($this->conn, $this->options);
 }