Testing annotation processors
Does anyone have any experience with unit-testing annotation processors? I'm working on an annotation processor that checks various constrains on declarations and issues warnings if something's wrong. Is is possible to test something like that short of "brute force", running APT and then parsing the output?

