1 /* 2 * Copyright (c) 2016 Mockito contributors 3 * This program is made available under the terms of the MIT License. 4 */ 5 package org.mockito.internal.creation.bytebuddy; 6 7 public interface BytecodeGenerator { 8 mockClass(MockFeatures<T> features)9 <T> Class<? extends T> mockClass(MockFeatures<T> features); 10 } 11