Если ваш COM-объект является объектом STA, вам, вероятно, нужно запустить цикл сообщений, чтобы его события сработали.
Вы можете использовать небольшую оболочку вокруг объекта Application
и Form
сделать это.Вот небольшой пример, который я написал за несколько минут.
Обратите внимание, что я не запускал и не тестировал его, поэтому он может не работать, и очистка, вероятно, должна быть лучше.Но это может дать вам направление для решения.
При таком подходе тестовый класс будет выглядеть примерно так:
[TestMethod]
public void Test()
{
MessageLoopTestRunner.Run(
// the logic of the test that should run on top of a message loop
runner =>
{
var myObject = new ComObject();
myObject.MyEvent += (source, args) =>
{
Assert.AreEqual(5, args.Value);
// tell the runner we don't need the message loop anymore
runner.Finish();
};
myObject.TriggerEvent(5);
},
// timeout to terminate message loop if test doesn't finish
TimeSpan.FromSeconds(3));
}
А код для MessageLoopTestRunner
будет что-то вродевот так:
public interface IMessageLoopTestRunner
{
void Finish();
}
public class MessageLoopTestRunner : Form, IMessageLoopTestRunner
{
public static void Run(Action<IMessageLoopTestRunner> test, TimeSpan timeout)
{
Application.Run(new MessageLoopTestRunner(test, timeout));
}
private readonly Action<IMessageLoopTestRunner> test;
private readonly Timer timeoutTimer;
private MessageLoopTestRunner(Action<IMessageLoopTestRunner> test, TimeSpan timeout)
{
this.test = test;
this.timeoutTimer = new Timer
{
Interval = (int)timeout.TotalMilliseconds,
Enabled = true
};
this.timeoutTimer.Tick += delegate { this.Timeout(); };
}
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
// queue execution of the test on the message queue
this.BeginInvoke(new MethodInvoker(() => this.test(this)));
}
private void Timeout()
{
this.Finish();
throw new Exception("Test timed out.");
}
public void Finish()
{
this.timeoutTimer.Dispose();
this.Close();
}
}
Это помогает?