| 1 | <?php |
||
| 9 | class LoggingAssertionExecutor |
||
| 10 | { |
||
| 11 | |||
| 12 | const ASSERTION = 'LoggingAssertionExecutor'; |
||
| 13 | |||
| 14 | protected $logger; |
||
| 15 | protected $testCase; |
||
| 16 | |||
| 17 | public function __construct( |
||
| 18 | LoggerInterface $logger, |
||
| 19 | AbstractTestCase $testCase |
||
| 20 | ) |
||
| 21 | { |
||
| 22 | $this->logger = $logger; |
||
| 23 | $this->testCase = $testCase; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function execute(AbstractAssertion $assertion, array $extra = []) |
||
| 43 | |||
| 44 | } |
||
| 45 |