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

net.thucydides.core.steps.BaseMethodRunner Maven / Gradle / Ivy

package net.thucydides.core.steps;

import net.sf.cglib.proxy.MethodProxy;

/**
 * Created by john on 9/08/2015.
 */
public class BaseMethodRunner {
    public Object invokeMethod(final Object obj, final Object[] args, final MethodProxy proxy) throws Throwable {
        return proxy.invokeSuper(obj, args);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy