com.fitbur.mockito.internal.matchers.text.FormattedText Maven / Gradle / Ivy
package com.fitbur.mockito.internal.matchers.text;
/**
* Contains text that has already been formatted
* and hence it does not need any formatting (like quotes around string, etc.)
*/
class FormattedText {
private String text;
public FormattedText(String text) {
this.text = text;
}
public String getText() {
return text;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy