Класс: 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