public class TraceAttrProcessingUnitTest extends BytecodeInstrumentationFixture {
@Test
public void testTraceUntaggedAttr() {
new TraceAttrProcessor(symbols, tracerObj, TraceAttrProcessor.FIELD_GETTING_PROCESSOR, "SQL", null, "SQL", null).process(
ZorkaUtil.<String, Object>map("SQL", "select * from table"));
traceBuilder.check(0, "action", "newAttr", "attrId", symbols.symbolId("SQL"));
traceBuilder.check(0, "attrVal", "select * from table");
}