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

net.jqwik.engine.facades.ReflectionSupportFacadeImpl Maven / Gradle / Ivy

The newest version!
package net.jqwik.engine.facades;

import net.jqwik.api.facades.*;
import net.jqwik.engine.support.*;

public class ReflectionSupportFacadeImpl extends ReflectionSupportFacade {

	@Override
	public  T newInstanceInTestContext(Class clazz, Object context) {
		return JqwikReflectionSupport.newInstanceInTestContext(clazz, context);
	}

	@Override
	public  T newInstanceWithDefaultConstructor(Class clazz) {
		return JqwikReflectionSupport.newInstanceWithDefaultConstructor(clazz);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy