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

com.tngtech.jgiven.exception.FailIfPassedException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tngtech.jgiven.exception;

/**
 * @see com.tngtech.jgiven.annotation.Pending
 */
public class FailIfPassedException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public FailIfPassedException() {
        super( "Test succeeded, but failIfPassed set to true. Now might be the right time to remove the @Pending annotation." );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy