(String[] args)
| 10 | |
| 11 | public class ClassToBase64 { |
| 12 | public static void main(String[] args) throws IllegalAccessException, IOException, InstantiationException { |
| 13 | String s = fileToBase64("/xx/classes/TestInterceptor.class"); |
| 14 | } |
| 15 | public static String fileToBase64(String filePath) throws IOException, IllegalAccessException, InstantiationException { |
| 16 | File file = new File(filePath); |
| 17 | FileInputStream inputFile = new FileInputStream(file); |
nothing calls this directly
no test coverage detected