/// <summary>
        /// Fires the test assembly completed event.
        /// </summary>
        /// <param name="e">The event data.</param>
        protected internal virtual void OnTestAssemblyCompleted(TestAssemblyCompletedEventArgs e)
        {
            var handler = TestAssemblyCompleted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
 /// <summary>
 /// Calls the test assembly completed event.
 /// </summary>
 /// <param name="e">The event data.</param>
 public void SendTestAssemblyCompleted(TestAssemblyCompletedEventArgs e)
 {
     _harness.OnTestAssemblyCompleted(e);
 }
 /// <summary>
 /// Fires the test assembly completed event.
 /// </summary>
 /// <param name="e">The event data.</param>
 protected internal virtual void OnTestAssemblyCompleted(TestAssemblyCompletedEventArgs e)
 {
     var handler = TestAssemblyCompleted;
     if (handler != null)
     {
         handler(this, e);
     }
 }
 private void OnTestAssemblyCompleted(object sender, TestAssemblyCompletedEventArgs e)
 {
     if (_remoteTestingApplicationService != null)
     {
         _remoteTestingApplicationService.TestAssemblyCompleted(sender, e);
     }
 }
        public void TestAssemblyCompleted(object sender, TestAssemblyCompletedEventArgs e)
        {
            var convertedData = _silverlightUnitTestAbstractionsFactory.Convert(e.Assembly);
            var serializedData = _serializationService.Serialize(convertedData);

            InvokeExternalMethod("TestsAssemblyCompleted", serializedData);
        }