eZ\Publish\Core\Persistence\Legacy\Tests\TransactionHandlerTest::testCommit PHP Метод

testCommit() публичный Метод

public testCommit ( )
    public function testCommit()
    {
        $handler = $this->getTransactionHandler();
        $this->getDatabaseHandlerMock()->expects($this->once())->method('commit');
        $this->getContentTypeHandlerMock()->expects($this->never())->method($this->anything());
        $this->getLanguageHandlerMock()->expects($this->never())->method($this->anything());
        $handler->commit();
    }