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

com.ociweb.pronghorn.code.TestFailureDetails Maven / Gradle / Ivy

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