34353637383940
protected static final Logger logger = LoggerFactory.getLogger(AbstractRamlTestCase.class); protected static Raml parseRaml(String resourceLocation) { return new RamlDocumentBuilder().build(getInputStream(resourceLocation), resourceLocation); }
39404142434445
return new RamlDocumentBuilder().build(getInputStream(resourceLocation), resourceLocation); } protected static Raml parseRaml(String raml, String resourceLocation) { return new RamlDocumentBuilder().build(raml, resourceLocation); }