Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
40 | public function __construct() |
||
41 | { |
||
42 | parent::__construct(); |
||
43 | |||
44 | $this->eventDispatcher = new EventDispatcher(); |
||
45 | |||
46 | // Configure a null logger to suppress unwanted output |
||
47 | $this->logger = new Logger('TestLogger'); |
||
48 | $this->logger->setHandlers([new NullHandler()]); |
||
49 | |||
50 | // Configure a single test instance |
||
51 | $this->configuration = new Configuration('/tmp', [ |
||
52 | new Instance('testInstance', 'example.com', 9981), |
||
53 | ]); |
||
54 | } |
||
55 | |||
68 |