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

com.tngtech.jgiven.annotation.Quoted Maven / Gradle / Ivy

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

import java.lang.annotation.*;

import com.tngtech.jgiven.format.PrintfFormatter;

/**
 * Step parameters annotated with this annotation will be put into quotes (" ") in reports.
 * 
 * @since 0.7.0
 */
@Documented
@Format( value = PrintfFormatter.class, args = "\"%s\"" )
@Retention( RetentionPolicy.RUNTIME )
@Target( { ElementType.PARAMETER, ElementType.ANNOTATION_TYPE, ElementType.FIELD } )
public @interface Quoted {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy