![JAR search and dependency download from the Maven repository](/logo.png)
com.ociweb.pronghorn.code.TestFailureDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pronghorn Show documentation
Show all versions of Pronghorn Show documentation
Primary dependency for any project using the Pronghorn framework
The newest version!
package com.ociweb.pronghorn.code;
public class TestFailureDetails {
private final String note;
public TestFailureDetails(String note) {
this.note = note;
}
public String toString() {
return note;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy