@Test
public void testAnalyzeNoHttpFrame() {
Operation op = createControllerOperation(false);
Frame frame = new SimpleFrame(FrameId.valueOf("3777347"), null, op, new TimeRange(1L, 10L), Collections.<Frame>emptyList());
Trace trace = Trace.newInstance(ApplicationName.valueOf("app"), TraceId.valueOf("0"), frame);
EndPointAnalysis analysis = analyzer.locateEndPoint(trace);
assertNotNull("No analysis result", analysis);
assertEquals("Mismatched example", op.getLabel(), analysis.getExample());
}