1 /* 2 * Copyright (c) 2017 Mockito contributors 3 * This program is made available under the terms of the MIT License. 4 */ 5 package org.mockitoutil; 6 7 import net.bytebuddy.ByteBuddy; 8 9 public class SimpleClassGenerator { 10 makeMarkerInterface(String qualifiedName)11 public static byte[] makeMarkerInterface(String qualifiedName) { 12 return new ByteBuddy().makeInterface().name(qualifiedName).make().getBytes(); 13 } 14 } 15