Sonata\tests\Component\Payment\Scellius\NodeScelliusTransactionGeneratorTest::testGenerator PHP Method

testGenerator() public method

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