Package org.jmock.internal.matcher

Examples of org.jmock.internal.matcher.MethodNameMatcher


        expectation.setMethodMatcher(methodMatcher);
        return this;
    }
   
    public ParametersClause method(String nameRegex) {
        return method(new MethodNameMatcher(nameRegex));
    }
View Full Code Here


        expectation.setMethodMatcher(methodMatcher);
        return this;
    }
   
    public ParametersClause method(String nameRegex) {
        return method(new MethodNameMatcher(nameRegex));
    }
View Full Code Here

TOP

Related Classes of org.jmock.internal.matcher.MethodNameMatcher

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.