Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 680 Bytes

README.adoc

File metadata and controls

34 lines (27 loc) · 680 Bytes

Sameness

Build Status

A library created for the sole purpose of determining if the method you refactored is still the same as the method you refactored it from.

Usage

@Property
public void testGetStartOfDay(
		Date date
) throws Exception {
	checker.check("getStartOfDay", newArrayList(
			arg(date)
	), Date.class);
}
@property
public void testGetStartOfDay(
		Date date
) throws Exception {
	checker.check("getStartOfDay", newArrayList(
			arg(date, Date.class)
	), simpleEquatator(Date.class));
}

etc.