blob: bb9a797a2f1ba3acae802f20ffef035bb8e9e63b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Louis Rose - initial API and implementation
******************************************************************************
*
* $Id$
*/
package org.eclipse.epsilon.flock.engine.test.acceptance.models;
import java.io.File;
import java.io.IOException;
import org.eclipse.emf.common.util.URI;
import org.eclipse.epsilon.common.util.FileUtil;
public abstract class FlockAcceptanceTestModels {
private FlockAcceptanceTestModels() {}
public static File getDoesModelFile() throws IOException {
return FileUtil.getFileStandalone("Does.model", FlockAcceptanceTestModels.class);
}
public static URI getDoesModelUri() throws IOException {
return URI.createFileURI(getDoesModelFile().getAbsolutePath());
}
public static File getBloggsModelFile() throws IOException {
return FileUtil.getFileStandalone("Bloggs.model", FlockAcceptanceTestModels.class);
}
}