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