My need is to Pass a custom arguments/Parameter to the unit test when running via the MsTest in the Command-line. The argument must be as command line argument and need to access the param value inside the test class or method.
I have a method that performs an asynchronous service call. I call this class by passing in the callback. public void GetRights(EventHandler<GetRightsCompletedEventArgs> callback) { ...