Класс: slreq.Requirement
Пакет: 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