mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-09 14:21:02 +01:00
ff6ccd5f68
Summary: Ref T9134. It looks like this functionality was removed in D13848. Test Plan: Submitted a diff successfully. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin Maniphest Tasks: T9134 Differential Revision: https://secure.phabricator.com/D13869
11 lines
244 B
PHP
11 lines
244 B
PHP
<?php
|
|
|
|
final class DifferentialUnitTestResult extends Phobject {
|
|
|
|
const RESULT_PASS = 'pass';
|
|
const RESULT_FAIL = 'fail';
|
|
const RESULT_SKIP = 'skip';
|
|
const RESULT_BROKEN = 'broken';
|
|
const RESULT_UNSOUND = 'unsound';
|
|
|
|
}
|