/**
  * @test
  */
 public function shouldAllowCreateGatewayConfig()
 {
     $factory = new OmnipayGatewayFactory();
     $config = $factory->createConfig();
     $this->assertInternalType('array', $config);
     $this->assertNotEmpty($config);
 }