public void CheckTextsCount() { int expected = 3; typeracer.Texts texts = new typeracer.Texts(); texts.GenerateStartingTexts(); int actual = texts.text.Count(); Assert.AreEqual(expected, actual); }
public void TextsNotNull() { typeracer.Texts texts = new typeracer.Texts(); texts.GenerateStartingTexts(); Assert.IsNotNull(texts.text); }