PhpUnitTestCaseJUnitResult.php

Namespace

Drupal\TestTools

File

core/tests/Drupal/TestTools/PhpUnitTestCaseJUnitResult.php

View source
<?php

declare (strict_types=1);
namespace Drupal\TestTools;


/**
 * Enumeration of JUnit test result statuses.
 */
enum PhpUnitTestCaseJUnitResult : string
{
  case Pass = 'pass';
  case Fail = 'fail';
  case Error = 'error';
  case Skip = 'skipped';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.