Package net.thucydides.core.annotations

Examples of net.thucydides.core.annotations.Pending


    public static TestStatus of(final Method method) {
        return new TestStatus(method);
    }

    public boolean isPending() {
        Pending pending = method.getAnnotation(Pending.class);
        return (pending != null);
    }
View Full Code Here

TOP

Related Classes of net.thucydides.core.annotations.Pending

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.