blob: af19bdea36a53a41b97856ab1156f54b1b4d4a8c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 The University of York, Aston University.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 3.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-3.0
*
* Contributors:
* Antonio Garcia-Dominguez - initial API and implementation
******************************************************************************/
package org.eclipse.hawk.greycat.tests;
import org.eclipse.hawk.backend.tests.BackendTestSuite;
import org.junit.runners.Parameterized.Parameters;
public class GreycatBackendTestSuite extends BackendTestSuite {
@Parameters(name="{0}")
public static Object[][] params() {
return new Object[][] {
{ new LevelDBGreycatDatabaseFactory() },
};
}
}