All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nitorcreations.junit.runners.parameterized.ParameterizationStrategy Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.nitorcreations.junit.runners.parameterized;

import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.commons.GeneratorAdapter;

public interface ParameterizationStrategy {
	void classCreationInProgress(String nameRaw, ClassVisitor cw);

	void loadConstructorArgs(GeneratorAdapter mv);

	void classConstructed(Class clazz, byte[] clazzBytes,
			Object[] constructorArgs);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy