www.gusucode.com > simulinktestdemos 工具箱matlab源码程序 > simulinktestdemos/+slstart/+internal/SimulinkTestFeaturedExampleProvider.m

    classdef SimulinkTestFeaturedExampleProvider < slstart.internal.FeaturedExampleProvider
    % Featured Examples for Simulink Test

    % Copyright 2015 The MathWorks, Inc.

    properties (GetAccess = public, SetAccess = private)
        % The customer visible product name this example ships with
        Product = 'Simulink Test';

        % The short name for this product as used by the Help Browser.
        ProductShortName = 'sltest';

        % Names of featured examples in this product.
        FeaturedExamples = {'sltestFuelRateControlCGVDemo',...
            'sltestRequirementsTestingAutopilotDemo',...
            'sltestCoverageIncreaseAPDemo'};

        % Message catalog root for translating strings for these examples.
        MessageCatalogRoot = 'simulinktest_demos:featured';
    end
end