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

com.automationrockstars.gir.data.TestDataPool Maven / Gradle / Ivy

The newest version!
/*
 * 
 */

package com.automationrockstars.gir.data;

import com.google.common.base.Predicate;

public interface TestDataPool {

    String poolName();

    void loadFrom(String location);

    void loadFrom(String... locations);

    void close();

     TestData testData(Class clazz);

     TestData exclusiveTestData(Class clazz);

    static interface TestDataPermutator {
        TestData build(Class recordType);

        TestData buildExclusive(Class recordType);

         TestDataPermutator combine(Class... recordTypes);

        TestDataPermutator exclude(Predicate predicate);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy