Package com.github.tomakehurst.wiremock.common

Examples of com.github.tomakehurst.wiremock.common.IdGenerator


        listener.requestReceived(request,
                response().status(200).body("anything").fromProxy(true).build());
    }
   
  private IdGenerator fixedIdGenerator(final String id) {
      return new IdGenerator() {
            public String generate() {
                return id;
            }
        };
  }
View Full Code Here

TOP

Related Classes of com.github.tomakehurst.wiremock.common.IdGenerator

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.