I have a library written in c++ that I want to end-to-end test from C# via interop. Basically this library takes in some parameters and spits out a file at the other end. I want to pass requests to a com interop and then assert that all the data was written correctly to the file.
Is it possible to do this? Is there an easier way? Using pinvoke or something?
Thanks