com.github.lgermani.sentinel.utils.DataStoreHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sentinel Show documentation
Show all versions of sentinel Show documentation
This is a Functional testing framework
package com.github.lgermani.sentinel.utils;
import com.thoughtworks.gauge.datastore.DataStore;
import com.thoughtworks.gauge.datastore.DataStoreFactory;
public class DataStoreHelper {
public static DataStore getSpecDataStore(){
return DataStoreFactory.getSpecDataStore();
}
public static DataStore getSuiteDataStore(){
return DataStoreFactory.getSpecDataStore();
}
public static DataStore getScenarioDataStore(){
return DataStoreFactory.getScenarioDataStore();
}
}