Let's say I am instrumenting a class, in which I want to add a couple of instructions to some parts of a method. For instance, let's consider the case where I want develop a visitor V to rename method call instructions existent in method C.m() from C.n() to C.n_detour().
What would be the easiest way to test that after running V over C, one would indeed get the desired results? I'm talking about xUnit style testing here.
At first I thought I could run TraceMethodVisitor over C, and compare it to a string of my own, but it turned out that there is a lot of "decoration" instructions (such as line numbering, etc) that are largely irrelevant to my tests (see Formatting the output of a TraceClassVisitor).
Theoretically I know I could make some visitor that'd run and check both the existence of a C.n_detour() and the non-existence of C.n(), but I'd rather use something more along the lines of the above approach (comparing instruction per instruction).
I took a look at ASM's Tree API, but it doesn't look that much better, as those decoration instructions show up there, too.
Does anyone have experience in the past testing code using ASM?