for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Paraunit\Parser\JSON;
use Paraunit\TestResult\Interfaces\TestResultHandlerInterface;
use Paraunit\TestResult\TestResultFactory;
/**
* Class AbnormalTerminatedParser
* @package Paraunit\Parser\JSON
*/
class AbnormalTerminatedParser extends GenericParser
{
* AbnormalTerminatedParser constructor.
* @param TestResultFactory $testResultFactory
* @param TestResultHandlerInterface $testResultHandler
public function __construct(TestResultFactory $testResultFactory, TestResultHandlerInterface $testResultHandler)
parent::__construct($testResultFactory, $testResultHandler, LogFetcher::LOG_ENDING_STATUS);
}