public void TestLabelsShowCorrecltPoints(int points) { CurrentUser.poitAmount = points; menuView = new Form1(); Assert.AreEqual(points, int.Parse(menuView.pointsLabel.Text)); }
public void TestLabelsShowCorrecltUsername(string username) { CurrentUser.username = username; menuView = new Form1(); Assert.AreEqual(username, menuView.userLabel.Text); }