Класс: slreq. Требование
Пакет: slreq
Сводка по статусу проверки требований запроса
status = getVerificationStatus(req)
status = getVerificationStatus(req, 'self')
возвращает сводку состояния проверки для требования status = getVerificationStatus(req)req и все его детские потребности.
возвращает сводку состояния проверки только для требования status = getVerificationStatus(req, 'self')req.
% Get the verification status summary of the requirement req % and all its child requirements reqVerifStatus = getVerificationStatus(req) reqVerifStatus = struct with fields: total: 34 passed: 14 failed: 15 unexecuted: 4 justified: 1 none: 0 % Get the verification status summary of only the requirement myReq myReqVerifStatus = getVerificationStatus(myReq, 'self') myReqVerifStatus = struct with fields: passed: 0 failed: 1 unexecuted: 0 justified: 0 none: 0