Test assembly starting event arguments.
        /// <summary>
        /// Fires the test assembly starting event.
        /// </summary>
        /// <param name="e">The event data.</param>
        protected internal virtual void OnTestAssemblyStarting(TestAssemblyStartingEventArgs e)
        {
            var handler = TestAssemblyStarting;

            if (handler != null)
            {
                handler(this, e);
            }
        }
 /// <summary>
 /// Calls the test assembly starting event.
 /// </summary>
 /// <param name="e">The event data.</param>
 public void SendTestAssemblyStarting(TestAssemblyStartingEventArgs e)
 {
     _harness.OnTestAssemblyStarting(e);
 }
 /// <summary>
 /// Fires the test assembly starting event.
 /// </summary>
 /// <param name="e">The event data.</param>
 protected internal virtual void OnTestAssemblyStarting(TestAssemblyStartingEventArgs e)
 {
     var handler = TestAssemblyStarting;
     if (handler != null)
     {
         handler(this, e);
     }
 }
 /// <summary>
 /// Handles the test assembly starting event to expand the test stage
 /// height.
 /// </summary>
 /// <param name="sender">The source object.</param>
 /// <param name="e">The event data.</param>
 private void OnTestAssemblyStarting(object sender, TestAssemblyStartingEventArgs e)
 {
     ExpandCollapseTestStage(true);
 }
        /// <summary>
        /// Handles the test assembly starting event to expand the test stage
        /// height.
        /// </summary>
        /// <param name="sender">The source object.</param>
        /// <param name="e">The event data.</param>
        private void OnTestAssemblyStarting(object sender, TestAssemblyStartingEventArgs e)
        {
            if (_remoteTestingApplicationService != null)
            {
                _remoteTestingApplicationService.TestAssemblyStarting(sender,e);
            }

            ExpandCollapseTestStage(true);
        }
        public void TestAssemblyStarting(object sender, TestAssemblyStartingEventArgs e)
        {
            var convertedData = _silverlightUnitTestAbstractionsFactory.Convert(e.Assembly);
            var serializedData = _serializationService.Serialize(convertedData);

            InvokeExternalMethod("TestsAssemblyStarting", serializedData);
        }