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

com.tngtech.jgiven.impl.intercept.StepMethodHandler Maven / Gradle / Ivy

package com.tngtech.jgiven.impl.intercept;

import java.lang.reflect.Method;

import com.tngtech.jgiven.report.model.InvocationMode;

public interface StepMethodHandler {
    void handleMethod( Object targetObject, Method paramMethod, Object[] arguments, InvocationMode mode, boolean hasNestedSteps )
            throws Throwable;

    void handleThrowable( Throwable t ) throws Throwable;

    void handleMethodFinished( long durationInNanos, boolean hasNestedSteps );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy