Skip to content

A testing library for checking if two methods act the same.

Notifications You must be signed in to change notification settings

aetheric/sameness

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A testing library for checking if two methods act the same.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published