1 package org.openecomp.sdc.vendorsoftwareproduct.impl.orchestration.csar.validation;
3 import org.apache.commons.io.IOUtils;
5 import java.io.IOException;
6 import java.io.InputStream;
9 * Provides util methods for Validation Test classes.
14 private ValidatorUtil(){
18 public static byte[] getFileResource(String filePath) throws IOException{
19 InputStream inputStream = ClassLoader.class.getClass().getResourceAsStream(filePath);
20 return IOUtils.toByteArray(inputStream);