blob: d72d69520905c08e872240e1bf7bd497cb1b8dd2 [file] [log] [blame]
/*
* Copyright (c) 2015 Eike Stepper (Berlin, Germany) and others.
* 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.userstorage.tests.util;
import java.io.File;
/**
* @author Eike Stepper
*/
public class Fixture
{
public static final boolean REMOTE = Boolean.getBoolean("org.eclipse.userstorage.tests.remote");
public static final File TEST_FOLDER = new File(System.getProperty("java.io.tmpdir"), "uss-tests");
public Fixture()
{
}
public void dispose() throws Exception
{
}
}