Skip to content

Instantly share code, notes, and snippets.

@jbleduigou
Created June 12, 2019 19:09
Show Gist options
  • Save jbleduigou/73f8db22177965ce0afea519d1807495 to your computer and use it in GitHub Desktop.
Save jbleduigou/73f8db22177965ce0afea519d1807495 to your computer and use it in GitHub Desktop.
MatcherFactoryV1
package com.github.jbleduigou.beer.matchers;
import com.github.jbleduigou.beer.model.Beer;
import org.hamcrest.Matcher;
public class BeerMatchers {
public static Matcher<Beer> beerWithName(final String name) {
return new BeerWithName(name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment