DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ Or()

TFResult Or ( TFResult other)

См. определение в файле TestFramework.c строка 30

31 {
32 if (Result == TFR.PENDING || other.Result == TFR.PENDING)
33 ErrorEx("Trying to Or while one of the results are PENDING.");
34
35 if (Result == TFR.SUCCESS || other.Result == TFR.SUCCESS)
36 Result = TFR.SUCCESS;
37 else
38 Result = TFR.FAIL;
39
40 return this;
41 }
TFR
Определения TestFramework.c:2
enum TFR Result
enum ShapeType ErrorEx

Перекрестные ссылки ErrorEx, Result и TFResult().