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

com.tngtech.jgiven.lang.de.Stufe Maven / Gradle / Ivy

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

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

/**
 * Eine deutsche Version der {@link com.tngtech.jgiven.Stage}-Klasse.
 */
public class Stufe> extends StageBase {
    
    @IntroWord
    public SELF gegeben() {
        return self();
    }

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy