Класс: slreq. Ссылка
Пакет: slreq
Запрос справки о состоянии проверки требований
status = getVerificationStatus(ref)
status = getVerificationStatus(ref, 'self')
возвращает сводку состояния проверки для указанного требования status = getVerificationStatus(ref)ref и все его дочерние ссылки.
возвращает сводку состояния проверки только для указанного требования status = getVerificationStatus(ref, 'self')ref.
% Get the verification status summary of the referenced requirement ref % and all its child references refVerifStatus = getVerificationStatus(ref) refVerifStatus = struct with fields: total: 70 passed: 45 failed: 7 unexecuted: 10 justified: 1 none: 7 % Get the verification status summary of only the referenced requirement myRef myRefVerifStatus = getVerificationStatus(myRef, 'self') myRefVerifStatus = struct with fields: passed: 1 failed: 0 unexecuted: 0 justified: 0 none: 0