Esempio n. 1
0
        public LoadAssistant(WarningHandler warningHandler)
        {
            if (warningHandler == null)
                throw new ArgumentNullException("warningHandler");

            _warningHandler = warningHandler;
        }
Esempio n. 2
0
        public TestAgent(Type containerType, TestContainerAttribute attribute, WarningHandler warningHandler)
        {
            ContainerType = containerType;
            MilestoneCount = attribute.MilestoneCount;
            IterationCount = attribute.IterationCount;
            Mode = attribute.Mode;
            Label = attribute.Label;
            Metrics = attribute.Metrics;
            Id = attribute.Id;
            TestedType = attribute.TestedType;

            _warningHandler = warningHandler;
        }