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

org.tatools.sunshine.testng.PreparedTestNGSuite Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package org.tatools.sunshine.testng;

import org.tatools.sunshine.core.FileSystemPath;
import org.tatools.sunshine.core.FileSystemPathBase;

/**
 * @author Dmytro Serdiuk ([email protected])
 * @version $Id: a6dbbe06fdb3062349885db7421616bb07856314 $
 * @since 0.1
 */
public final class PreparedTestNGSuite implements TestNGSuite {

    private final FileSystemPath fileSystemPath;

    public PreparedTestNGSuite(String path) {
        this(new FileSystemPathBase(path));
    }

    public PreparedTestNGSuite(FileSystemPath fileSystemPath) {
        this.fileSystemPath = fileSystemPath;
    }

    @Override
    public FileSystemPath tests() {
        return fileSystemPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy