Package org.jbehave.core.listener

Source Code of org.jbehave.core.listener.PendingResult

package org.jbehave.core.listener;

import org.jbehave.core.behaviour.BehaviourMethod;
import org.jbehave.core.exception.PendingException;
import org.jbehave.core.result.BehaviourMethodResult;

class PendingResult extends BehaviourMethodResult {
    public PendingResult(BehaviourMethod behaviourMethod) {
        super(behaviourMethod, new PendingException());
    }
}
TOP

Related Classes of org.jbehave.core.listener.PendingResult

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.