Inheritance: implements Sonata\Component\Payment\Scellius\ScelliusTransactionGeneratorInterface
 public function testGenerator()
 {
     $order = $this->getMock('Sonata\\Component\\Order\\OrderInterface');
     $order->expects($this->never())->method('getReference');
     $generator = new NodeScelliusTransactionGenerator();
     $this->assertEquals('', $generator->generate($order));
 }