Home
last modified time | relevance | path

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

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/
H A DBundleIdBasedRegionTests.java174 Bundle mockBundle2 = EasyMock.createMock(Bundle.class); in testAddConflictingBundle() local
175 EasyMock.expect(mockBundle2.getSymbolicName()).andReturn(BUNDLE_SYMBOLIC_NAME).anyTimes(); in testAddConflictingBundle()
176 EasyMock.expect(mockBundle2.getVersion()).andReturn(BUNDLE_VERSION).anyTimes(); in testAddConflictingBundle()
177 EasyMock.expect(mockBundle2.getBundleId()).andReturn(BUNDLE_ID_2).anyTimes(); in testAddConflictingBundle()
178 EasyMock.replay(mockBundle2); in testAddConflictingBundle()
182 r.addBundle(mockBundle2); in testAddConflictingBundle()