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);
    }

}

link|improve this question

29% accept rate
Take a look at this question - stackoverflow.com/questions/6833092. See if this solves your crash... – Gishu Oct 18 '11 at 11:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.