Comment 6 for bug 1071164

Revision history for this message
Simone Busoli (simone.busoli) wrote :

Hi Charlie,

I'm working on this and I have one question. We basically need to do with Assert.Throws(async () => [some async code]) the same we're doing while executing tests, awaiting it. The code for the latter is in core, are there any existing ways by which we share code between the two? Since they obviously don't share any assembly references and it's only core which interacts with framework via reflection, the only thing which comes to mind is to just let the code leave in core and "reference" it from framework via "Add as link" feature in VS, which allows to use the same source file form both projects.

Thoughts?