blob: 7ce70b1b625e6ae4fc2bfb53f92b5cdf0ec526ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.sdk.internal.test.api.compatibitity;
import org.eclipse.scout.sdk.helper.ScoutProjectHelper;
import org.eclipse.scout.sdk.internal.test.AbstractScoutSdkTest;
import org.junit.BeforeClass;
/**
*
*/
public abstract class AbstractApiTest extends AbstractScoutSdkTest {
@BeforeClass
public static void setUpWorkspace() throws Exception {
ScoutProjectHelper.setupNewProject("api.test.project", true, true, true);
}
}