Package org.jbehave.core.steps

Source Code of org.jbehave.core.steps.SomeSteps$MyParameters

package org.jbehave.core.steps;

import java.beans.BeanInfo;
import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.MethodDescriptor;
import java.lang.reflect.Method;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Set;

import org.jbehave.core.annotations.AsParameters;
import org.jbehave.core.annotations.BeforeScenario;
import org.jbehave.core.annotations.Named;
import org.jbehave.core.failures.PendingStepFound;
import org.jbehave.core.failures.UUIDExceptionWrapper;
import org.jbehave.core.model.ExamplesTable;

public class SomeSteps extends Steps {

    public SomeSteps() {
    }

    public Object args;

    public void aMethod() {
    }

    public void aFailingMethod() {
        throw new RuntimeException();
    }

    @BeforeScenario
    public void aFailingBeforeScenarioMethod() {
        throw new RuntimeException();
    }

    public void aPendingMethod() {
        throw new PendingStepFound("a step");
    }

    public void aMethodWith(String args) {
        this.args = args;
    }

    public void aMethodWith(double args) {
        this.args = args;
    }

    public void aMethodWith(long args) {
        this.args = args;
    }

    public void aMethodWith(int args) {
        this.args = args;
    }

    public void aMethodWith(float args) {
        this.args = args;
    }

    public void aMethodWithListOfStrings(List<String> args) {
        this.args = args;
    }

    public void aMethodWithListOfLongs(List<Long> args) {
        this.args = args;
    }

    public void aMethodWithListOfIntegers(List<Integer> args) {
        this.args = args;
    }

    public void aMethodWithListOfDoubles(List<Double> args) {
        this.args = args;
    }

    public void aMethodWithListOfFloats(List<Float> args) {
        this.args = args;
    }
   
    public void aMethodWithListOfNumbers(List<Number> args) {
        this.args = args;
    }
   
    public void aMethodWithSetOfStrings(Set<String> args) {
        this.args = args;
    }

    public void aMethodWithSetOfNumbers(Set<Number> args) {
        this.args = args;
    }

    public void aMethodWithDate(Date args) {
        this.args = args;
    }

    public void aMethodWithExamplesTable(ExamplesTable args) {
        this.args = args;
    }

    public ExamplesTable aMethodReturningExamplesTable(String value){
      return new ExamplesTable(value);
    }

    public void aMethodWithExamplesTableParameter(MyParameters args) {
        this.args = args;
    }

    public void aMethodWithExamplesTableParameters(List<MyParameters> args) {
        this.args = args;
    }

    @AsParameters
    public static class MyParameters {
        String col1;
        String col2;
       
    }

    public ExamplesTable aFailingMethodReturningExamplesTable(String value){
        throw new RuntimeException(value);
    }
   
    public void aMethodWithEnum(SomeEnum value) {
        this.args = value;
    }

    public void aMethodWithEnumList(List<SomeEnum> value) {
        this.args = value;
    }

    public void aMethodWithBoolean(Boolean value) {
        this.args = value;
    }

    public void aMethodWithBooleanList(List<Boolean> value) {
        this.args = value;
    }

    public void aMethodWithANamedParameter(@Named("theme") String theme, @Named("variant") String variant) {
        HashMap<String, Object> namedArgs = new HashMap<String, Object>();
        namedArgs.put("theme", theme);
        namedArgs.put("variant", variant);
        this.args = namedArgs;
    }

    public void aMethodWithoutNamedAnnotation(String theme) {
        this.args = theme;
    }

    public void aMethodThatExpectsUUIDExceptionWrapper(UUIDExceptionWrapper exception) {
        this.args = exception;
    }

    public static Method methodFor(String methodName) throws IntrospectionException {
        BeanInfo beanInfo = Introspector.getBeanInfo(SomeSteps.class);
        for (MethodDescriptor md : beanInfo.getMethodDescriptors()) {
            if (md.getMethod().getName().equals(methodName)) {
                return md.getMethod();
            }
        }
        return null;
    }

}

enum SomeEnum {
    ONE,
    TWO,
    THREE;
}
TOP

Related Classes of org.jbehave.core.steps.SomeSteps$MyParameters

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.