mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
13 lines
290 B
PHP
13 lines
290 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialUnitTestResult {
|
||
|
|
||
|
const RESULT_PASS = 'pass';
|
||
|
const RESULT_FAIL = 'fail';
|
||
|
const RESULT_SKIP = 'skip';
|
||
|
const RESULT_BROKEN = 'broken';
|
||
|
const RESULT_UNSOUND = 'unsound';
|
||
|
const RESULT_POSTPONED = 'postponed';
|
||
|
|
||
|
}
|