All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsoar.performancetesting.yaml.Configuration Maven / Gradle / Ivy

package org.jsoar.performancetesting.yaml;

import java.util.List;

/**
 * This is a configuration class for parsing the YAML files used by the
 * performance testing framework.
 * 
 * @author ALT
 *
 */
public class Configuration
{
    public static TestSettings defaultSettings;
    private List tests;
    
    public List getTests()
    {
        return tests;
    }
    
    public void setConfigurationTests(List tests)
    {
        this.tests = tests;
    }
    
    public TestSettings getDefaultSettings()
    {
        return Configuration.defaultSettings;
    }
    
    public void setDefaultSettings(TestSettings defaultSettings)
    {
        Configuration.defaultSettings = defaultSettings;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy