Esempio n. 1
0
        /// <summary>
        /// Start the integration profile test by starting up all the
        /// configured actors.
        /// </summary>
        public void StartTest()
        {
            _nrErrors   = 0;
            _nrWarnings = 0;

            // if working interactively - set up the form
            if (Config.CommonConfig.Interactive == true)
            {
                // create a form for this integration profile
                _uiForm = new Dvtk.IheActors.UserInterfaces.Form();
                _uiForm.Attach(this);
            }

            // set up the default tag value list
            _defaultValueManager.CreateDefaultTagValues();

            // start all the actors
            foreach (BaseActor actor in _actors)
            {
                // If this Integration Profile is attached to UserInterfaces that implement the
                // IActorUserInterface, attach the actor to them.
                AttachActorToActorUserInterfaces(actor);

                actor.StartActor(_defaultValueManager);
            }
        }
Esempio n. 2
0
        /// <summary>
        /// Start the integration profile test by starting up all the
        /// configured actors.
        /// </summary>
        public void StartTest()
        {
            _nrErrors = 0;
            _nrWarnings = 0;

            // if working interactively - set up the form
            if (Config.CommonConfig.Interactive == true)
            {
                // create a form for this integration profile
                _uiForm = new Dvtk.IheActors.UserInterfaces.Form();
                _uiForm.Attach(this);
            }

            // set up the default tag value list
            _defaultValueManager.CreateDefaultTagValues();

            // start all the actors
            foreach (BaseActor actor in _actors)
            {
                // If this Integration Profile is attached to UserInterfaces that implement the
                // IActorUserInterface, attach the actor to them.
                AttachActorToActorUserInterfaces(actor);

                actor.StartActor(_defaultValueManager);
            }
        }