Package org.jbehave.core.mock

Examples of org.jbehave.core.mock.Matcher


  }
 
  protected abstract void verifyAnyTimeIn(World world);
 
    public Matcher looksLike(final String asciiRepresentation) {
        return new Matcher() {
            public boolean matches(Object arg) {
                return ((RenderedPit)arg).toString().equals(asciiRepresentation);
            }
           
            public String toString() {
View Full Code Here


        };
    }
   
    public Matcher contains(final Segments segments, final Color color) {
     
        return new Matcher() {
            public boolean matches(Object arg) {
                return ((RenderedPit)arg).contains(segments, color);
            }
           
            public String toString() {               
View Full Code Here

TOP

Related Classes of org.jbehave.core.mock.Matcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.