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

◆ And()

TFResult And ( TFResult other)

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

18 {
19 if (Result == TFR.PENDING || other.Result == TFR.PENDING)
20 ErrorEx("Trying to And while one of the results are PENDING.");
21
22 if (Result == TFR.SUCCESS && other.Result == TFR.SUCCESS)
23 Result = TFR.SUCCESS;
24 else
25 Result = TFR.FAIL;
26
27 return this;
28 }
TFR
Определения TestFramework.c:2
enum TFR Result
enum ShapeType ErrorEx

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