public void AllTest() { WordState w = new WordState(); w.All(); Assert.AreEqual(w.R, true); Assert.AreEqual(w.E, true); Assert.AreEqual(w.S, true); }
public Model.WordState State() { WordState w = new WordState(); Word word = _automat.word; w.Text(word.EWord, word.Transcription, word.EPhrase, word.RWord, word.RPhrase); w.All(); w.ButtonStateN(); return w; }