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

com.tngtech.jgiven.lang.pt.Etapa Maven / Gradle / Ivy

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

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

/**
 * Uma versão em português da classe {@link com.tngtech.jgiven.Stage}.
 */
public class Etapa> extends StageBase {
    
    @IntroWord
    public SELF dado() {
        return self();
    }

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy