1 | <?php |
||
2 | namespace LE_ACME2Tests; |
||
3 | |||
4 | use PHPUnit\Framework\TestCase; |
||
5 | use LE_ACME2; |
||
6 | |||
7 | abstract class AbstractLeAcme2TestCase extends EnhancedTestCase { |
||
8 | |||
9 | protected $_accountEmail; |
||
10 | protected $_orderSubjects = []; |
||
11 | protected $_umlautsOrderSubjects = []; |
||
12 | |||
13 | public function __construct(string $name) { |
||
14 | |||
15 | $this->_accountEmail = 'le_acme2_php' . phpversion() . '[email protected]'; |
||
16 | |||
17 | parent::__construct($name); |
||
18 | |||
19 | $this->_orderSubjects[] = 'test.de'; |
||
20 | |||
21 | $this->_umlautsOrderSubjects[] = 'xn--test--kra0kxb.de'; // test-üäö.de |
||
22 | |||
23 | LE_ACME2\Connector\Connector::getInstance()->useStagingServer(true); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
24 | } |
||
25 | } |