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