use of org.jboss.tools.openshift.common.core.connection.ConnectionsRegistry in project jbosstools-openshift by jbosstools.
the class RefreshTest method setUp.
@Before
public void setUp() {
registry = new ConnectionsRegistry();
model = new OpenshiftUIModelTestable(registry);
listener = mock(IElementListener.class);
model.addListener(listener);
IOpenShiftConnection connection = mock(IOpenShiftConnection.class);
registry.add(connection);
}
Aggregations