com.sdl.selenium.web.utils.ContentFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
The newest version!
package com.sdl.selenium.web.utils;
public class ContentFiles {
private String currentFileContent;
private String expectedFileContent;
private boolean result;
public ContentFiles(String currentFileContent, String expectedFileContent, boolean result) {
this.currentFileContent = currentFileContent;
this.expectedFileContent = expectedFileContent;
this.result = result;
}
public String getCurrentFileContent() {
return currentFileContent;
}
public void setCurrentFileContent(String currentFileContent) {
this.currentFileContent = currentFileContent;
}
public String getExpectedFileContent() {
return expectedFileContent;
}
public void setExpectedFileContent(String expectedFileContent) {
this.expectedFileContent = expectedFileContent;
}
public boolean isResult() {
return result;
}
public void setResult(boolean result) {
this.result = result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy