Package cuke4duke.spi.jruby

Examples of cuke4duke.spi.jruby.JRubyExceptionFactory


    }

    @Test(expected = org.jruby.exceptions.RaiseException.class)
    public void shouldRaiseCucumberPendingWhenAnnotatedWithPending() throws Throwable {
        Method dontExecuteMe = SomethingWithPending.class.getDeclaredMethod("dontExecuteMe");
        MethodInvoker mi = new MethodInvoker(new JRubyExceptionFactory());
        mi.invoke(dontExecuteMe, new SomethingWithPending(), new Object[0]);
    }
View Full Code Here

TOP

Related Classes of cuke4duke.spi.jruby.JRubyExceptionFactory

Copyright © 2018 www.massapicom. 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.