001package beginner;
002
003import com.sandwich.koan.Koan;
004
005import static com.sandwich.util.Assert.fail;
006
007public class AboutKoans {
008
009    @Koan
010    public void findAboutKoansFile() {
011        // Hello, I'm a koan. I'm a piece of code, piece of wisdom,
012        // which you learn JAVA with. Every koan is a small task to solve.
013        // To solve it is to make it pass, or not to fail.
014    }
015
016    @Koan
017    public void definitionOfKoanCompletion() {
018        boolean koanIsComplete = true;
019        if (!koanIsComplete) {
020            fail("what if koanIsComplete variable was true?");
021        }
022    }
023
024}