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

io.cucumber.java8.Java8HookDefinition Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package io.cucumber.java8;

import io.cucumber.core.backend.HookDefinition;
import io.cucumber.core.backend.TestCaseState;

import static java.util.Objects.requireNonNull;

final class Java8HookDefinition extends AbstractGlueDefinition implements HookDefinition {

    private final String tagExpression;
    private final int order;

    Java8HookDefinition(String tagExpression, int order, HookBody hookBody) {
        this(tagExpression, order, (Object) hookBody);
    }

    private Java8HookDefinition(String tagExpression, int order, Object body) {
        super(body, new Exception().getStackTrace()[3]);
        this.order = order;
        this.tagExpression = requireNonNull(tagExpression, "tag-expression may not be null");
    }

    Java8HookDefinition(String tagExpression, int order, HookNoArgsBody hookNoArgsBody) {
        this(tagExpression, order, (Object) hookNoArgsBody);
    }

    @Override
    public void execute(final TestCaseState state) {
        Object[] args;
        if (method.getParameterCount() == 0) {
            args = new Object[0];
        } else {
            args = new Object[] { new io.cucumber.java8.Scenario(state) };
        }
        invokeMethod(args);
    }

    @Override
    public String getTagExpression() {
        return tagExpression;
    }

    @Override
    public int getOrder() {
        return order;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy