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

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

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