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

com.github.karsaig.approvalcrest.matcher.file.MatcherFile Maven / Gradle / Ivy

The newest version!
package com.github.karsaig.approvalcrest.matcher.file;

import java.nio.file.Path;
import java.util.Optional;

public class MatcherFile {

    private Path filePath;
    private Optional content = Optional.empty();
    private String testName;
    private Optional sharedContent = Optional.empty();

    public Optional getContent() {
        return content;
    }

    public void setContent(Optional content) {
        this.content = content;
    }

    public String getTestName() {
        return testName;
    }

    public void setTestName(String testName) {
        this.testName = testName;
    }

    public Optional getSharedContent() {
        return sharedContent;
    }

    public void setSharedContent(Optional sharedContent) {
        this.sharedContent = sharedContent;
    }

    public Path getFilePath() {
        return filePath;
    }

    public void setFilePath(Path filePath) {
        this.filePath = filePath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy