8
0
Ordermanager/tests/additional.inc.php

42 Zeilen
949 B
PHP

<?php
/**
* Copyright (c) D3 Data Development (Inh. Thomas Dartsch)
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
// Include ordermanager test config
namespace D3\Ordermanager\tests;
use D3\ModCfg\Tests\additional_abstract;
use Exception;
use OxidEsales\Eshop\Core\Exception\StandardException;
include(__DIR__ . DIRECTORY_SEPARATOR . 'd3ordermanager_config.php');
class additional extends additional_abstract
{
/**
* additional constructor.
* @throws StandardException
*/
public function __construct()
{
$this->reactivateModCfg();
}
}
try {
d3GetOxidDIC()->get(additional::class);
} catch (Exception) {
}