Home
last modified time | relevance | path

Searched refs:getVisitor (Results 1 – 10 of 10) sorted by relevance

/external/apache-commons-bcel/src/test/java/org/apache/bcel/
DCounterVisitorTestCase.java33 assertEquals("annotationCount", 2, getVisitor().annotationCount); in testAnnotationsCount()
38 assertEquals("annotationDefaultCount", 0, getVisitor().annotationDefaultCount); in testAnnotationDefaultCount()
43 assertEquals("annotationEntryCount", 2, getVisitor().annotationEntryCount); in testAnnotationEntryCount()
48 assertEquals("codeCount", 1, getVisitor().codeCount); in testCodeCount()
53 assertEquals("codeExceptionCount", 0, getVisitor().codeExceptionCount); in testCodeExceptionCount()
58 assertEquals("constantClassCount", 2, getVisitor().constantClassCount); in testConstantClassCount()
63 assertEquals("constantDoubleCount", 0, getVisitor().constantDoubleCount); in testConstantDoubleCount()
68 assertEquals("constantFieldrefCount", 0, getVisitor().constantFieldrefCount); in testConstantFieldrefCount()
73 assertEquals("constantFloatCount", 0, getVisitor().constantFloatCount); in testConstantFloatCount()
78 assertEquals("constantIntegerCount", 0, getVisitor().constantIntegerCount); in testConstantIntegerCount()
[all …]
DAbstractCounterVisitorTestCase.java35 new DescendingVisitor(getTestClass(), getVisitor()).visit(); in setUp()
38 public CounterVisitor getVisitor() in getVisitor() method in AbstractCounterVisitorTestCase
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DDuplicateFrameEliminatorTest.java52 eliminator = new DuplicateFrameEliminator(actual.getVisitor()); in setup()
65 frame(expected.getVisitor()); in testDuplicateFrame()
146 frame(expected.getVisitor()); in testInstructionBetweenFrames()
147 node.accept(expected.getVisitor()); in testInstructionBetweenFrames()
148 frame(expected.getVisitor()); in testInstructionBetweenFrames()
DMethodInstrumenterTest.java42 expectedVisitor = expected.getVisitor(); in setup()
46 actual.getVisitor().visitLdcInsn("Probe " + id); in setup()
49 instrumenter = new MethodInstrumenter(actual.getVisitor(), in setup()
DProbeInserterTest.java38 actualVisitor = actual.getVisitor(); in setup()
40 expectedVisitor = expected.getVisitor(); in setup()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
DOfflineInstrumentationAccessGeneratorTest.java67 actual.getVisitor()); in testRuntimeClassName()
70 expected.getVisitor().visitLdcInsn(Long.valueOf(987654321)); in testRuntimeClassName()
71 expected.getVisitor().visitLdcInsn("foo/Bar"); in testRuntimeClassName()
72 expected.getVisitor().visitIntInsn(Opcodes.BIPUSH, 17); in testRuntimeClassName()
74 expected.getVisitor().visitMethodInsn(Opcodes.INVOKESTATIC, rtname, in testRuntimeClassName()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DFrameSnapshotTest.java41 expectedVisitor = expected.getVisitor(); in setup()
47 frame.accept(actual.getVisitor()); in teardown()
DMethodSanitizerTest.java147 node.accept(rec.getVisitor()); in dump()
DMethodProbesAdapterTest.java50 super(recorder.getVisitor()); in TraceAdapter()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
DMethodRecorder.java39 public MethodVisitor getVisitor() { in getVisitor() method in MethodRecorder