Roslyn - dynamic (runtime) flow

677 Views Asked by At

I started playing with Roslyn. It’s relatively easy to parse code and do static analysis.

I wonder if it’s possible to use it for runtime analysis? I want to call a method with parameters and check which branches were executed. In other words, I need a runtime execution plan. Is it something which could be done with Roslyn?

1

There are 1 best solutions below

3
On BEST ANSWER

I don't know what the best solution is and I would defer to anything SLaks recommends in most cases.

However...

If you want to do this with Roslyn you certainly can. In fact at my company does something similar (we map unit tests to the methods they invoke).

Here's a high level overview of our approach.

  1. Rewrite every single function in the solution to log when it is hit in some global static lookup/data-structure. You can iterate over every file one at a time and use the CSharpSyntaxRewriter on each one. (In your case you'll be rewriting on a branch or line-by-line basis)

  2. Run each unit test one at a time and see what gets run by analzying your global lookup.

  3. Aggregate the results across all your unit tests to understand your complete code coverage.