I am trying to write a simple test method that invokes an asychronous method(StartEMS in the example) in another class. Now I want to wait till the asynchronous method returns, so I tried using a ManualResetEvent and called WaitOne on it. The problem is that, while debugging, at the line where WaitOne is called, the execution abruptly stops with status: "Test host process exited unexpectedly". I have no clue whats going wrong. Please help.
public class EMSTesterTest
{
private TestContext testContextInstance;
ManualResetEvent myEvent = new ManualResetEvent(false);
EMSTester target;
[TestMethod()]
public void TestEMSForSingleLegOrder()
{
EMSTester.SimulateNewSingleLegOrder();
EMSTester.StartEMS();
myEvent.WaitOne();
Assert.AreEqual(1, 1);
}
}