for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MyTester;
/**
* Skipped test info
*
* @author Jakub Konečný
* @internal
*/
final class SkippedTest {
use \Nette\SmartObject;
public string $name;
public string $reason;
public function __construct(string $name, string $reason) {
$this->name = $name;
$this->reason = $reason;
}
?>