Skip to content

Commit

Permalink
add matchers class
Browse files Browse the repository at this point in the history
  • Loading branch information
vincemann committed Apr 7, 2023
1 parent 5ef7570 commit 5fe1bdd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/java/com/github/vincemann/ezcompare/PropertyMatchers.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.github.vincemann.ezcompare;


public class PropertyMatchers {

/**
* @param compareRoot supply own Entity
* @return
*/
public static PropertyMatcher propertyAssert(Object compareRoot) {
return new PropertyMatcher(compareRoot);
}


}

0 comments on commit 5fe1bdd

Please sign in to comment.