org.cassandraunit.dataset.json.ClassPathJsonDataSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-unit Show documentation
Show all versions of cassandra-unit Show documentation
Test framework to develop with Cassandra
package org.cassandraunit.dataset.json;
import org.cassandraunit.dataset.DataSet;
import java.io.InputStream;
/**
* @author Jeremy Sevellec
*/
public class ClassPathJsonDataSet extends AbstractJsonDataSet implements DataSet {
public ClassPathJsonDataSet(String dataSetLocation) {
super(dataSetLocation);
}
protected InputStream getInputDataSetLocation(String dataSetLocation) {
InputStream inputDataSetLocation = this.getClass().getResourceAsStream("/" + dataSetLocation);
return inputDataSetLocation;
}
}