Package com.github.tomakehurst.wiremock.stubbing

Examples of com.github.tomakehurst.wiremock.stubbing.JsonStubMappingCreator


    this.mappingsFileSource = mappingsFileSource;
  }

  @Override
  public void loadMappingsInto(StubMappings stubMappings) {
    JsonStubMappingCreator jsonStubMappingCreator = new JsonStubMappingCreator(stubMappings);
    Iterable<TextFile> mappingFiles = filter(mappingsFileSource.listFilesRecursively(), byFileExtension("json"));
    for (TextFile mappingFile: mappingFiles) {
      jsonStubMappingCreator.addMappingFrom(mappingFile.readContentsAsString());
    }
  }
View Full Code Here

TOP

Related Classes of com.github.tomakehurst.wiremock.stubbing.JsonStubMappingCreator

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.