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

com.tngtech.jgiven.lang.es.Fase Maven / Gradle / Ivy

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

import com.tngtech.jgiven.annotation.IntroWord;
import com.tngtech.jgiven.annotation.StepComment;
import com.tngtech.jgiven.base.StageBase;

/**
 * Una versión en español de la clase {@link com.tngtech.jgiven.Stage}.
 */
public class Fase> extends StageBase {
    
    @IntroWord
    public SELF dado() {
        return self();
    }

    @IntroWord
    public SELF dada() {
        return self();
    }

    @IntroWord
    public SELF cuando() {
        return self();
    }

    @IntroWord
    public SELF entonces() {
        return self();
    }

    @IntroWord
    public SELF y() {
        return self();
    }

    @IntroWord
    public SELF pero() {
        return self();
    }

    @IntroWord
    public SELF con() {
        return self();
    }

    @StepComment
    public SELF comentario( String comment ) {
        return self();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy