Not Able to call The method Asynchronously Unit Test.

Posted by user43838 on Stack Overflow See other posts from Stack Overflow or by user43838
Published on 2010-03-16T15:19:48Z Indexed on 2010/03/16 15:21 UTC
Read the original article Hit count: 150

Filed under:
|
|

Hi everyone,

I am trying to call a method that passes an object called parameters.

Thread t1 = new Thread(delegate() { target.DoWork(parameters); });

t1.Start();

My test is failing all the time and i am not able step through the method..

Can someone please put me in the right direction

Thanks

© Stack Overflow or respective owner

Related posts about c#

Related posts about unit-testing