blob: 4954f3269e0b5db40c2060201c91fc61dd0b43e1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 Attensity Europe GmbH and brox IT Solutions GmbH. All rights reserved. This program and the
* accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this
* distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Juergen Schumacher, Andreas Weber, Drazen Cindric, Andreas Schank (all Attensity Europe GmbH) - initial
* implementation
**********************************************************************************************************************/
package org.eclipse.smila.bulkbuilder.test;
import org.eclipse.smila.bulkbuilder.BulkbuilderService;
import org.eclipse.smila.bulkbuilder.internal.BulkbuilderServiceImpl;
import org.eclipse.smila.test.DeclarativeServiceTestCase;
/** basic bulkbuilder tests. */
public class TestBulkbuilderService extends DeclarativeServiceTestCase {
/** check if service is registrated. */
public void testService() throws Exception {
final BulkbuilderService service = getService(BulkbuilderService.class);
assertNotNull(service);
assertTrue(service instanceof BulkbuilderServiceImpl);
}
}