Skip to content

Instantly share code, notes, and snippets.

@jbleduigou
Created June 12, 2019 19:14
Show Gist options
  • Save jbleduigou/fce33e8e3d222ff03df914b3614c16b8 to your computer and use it in GitHub Desktop.
Save jbleduigou/fce33e8e3d222ff03df914b3614c16b8 to your computer and use it in GitHub Desktop.
FactoryV2
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);
}
public static Matcher<Beer> beerWithAbv(final Double alcoholByVolume) {
return new BeerWithAlcoholByVolume(alcoholByVolume);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment