blob: 867b65aec2955646ea77640659b170d9893ec67f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Tasktop Technologies and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.discovery.tests.core.mock;
import org.eclipse.equinox.internal.p2.discovery.model.CatalogCategory;
import org.eclipse.equinox.internal.p2.discovery.model.Icon;
/**
* @author David Green
*/
public class CatalogCategoryMockFactory extends AbstractMockFactory<CatalogCategory> {
CatalogCategory category;
@Override
protected CatalogCategory createMockObject() {
return new CatalogCategory();
}
@Override
protected void populateMockData() {
// mock up some data
getMockObject().setSource(source);
name("Category " + seed).id(CatalogCategoryMockFactory.class.getPackage().getName() + ".connector" + seed).description("A category of things, " + seed); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Icon icon = new Icon();
icon.setImage128("images/ico128.png"); //$NON-NLS-1$
icon.setImage16("images/ico16.png"); //$NON-NLS-1$
icon.setImage32("images/ico32.png"); //$NON-NLS-1$
icon.setImage64("images/ico64.png"); //$NON-NLS-1$
getMockObject().setIcon(icon);
}
public CatalogCategoryMockFactory description(String description) {
getMockObject().setDescription(description);
return this;
}
public CatalogCategoryMockFactory icon(Icon icon) {
getMockObject().setIcon(icon);
return this;
}
public CatalogCategoryMockFactory id(String id) {
getMockObject().setId(id);
return this;
}
public CatalogCategoryMockFactory name(String name) {
getMockObject().setName(name);
return this;
}
}