blob: 242774586860790f337d8253b7ef33ff321e867c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2012 Formal Mind GmbH and University of Dusseldorf.
* 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:
* Michael Jastram - initial API and implementation
******************************************************************************/
package org.eclipse.rmf.reqif10.search.testdata;
import java.net.URISyntaxException;
import org.eclipse.emf.common.util.URI;
/**
*
* This class only exists to provide easy access to the RIF files in this folder.
*
* @author jastram
*
*/
public class TestData {
private TestData() {
throw new RuntimeException("Not intended for instantiation");
}
/**
* Retrieves the URI for the given test file. The test file must not have any path elements and reside in the package, e.g.<p>
*
* <pre>
* URI resourceURI = TestData.getURI("simple.reqif");
* </pre>
* @param filename a path-less filename.
*
* @return the URI for the file.
*
* @throws URISyntaxException
*/
public static URI getURI(String filename) throws URISyntaxException {
return URI.createURI(TestData.class.getResource(filename).toURI().toString());
}
}