这是一个简单的 WPF 应用程序代码的一部分:3 个文本框、一个下拉列表和一个按钮。通过单击按钮,将检查输入值。
private void Button_Click_1(object sender, RoutedEventArgs e)
{
if (textBox1.Text.Length>127)
throw new ArgumentException();
if (string.IsNullOrEmpty(textBox2.Text))
errorsList.Add("You must to fill out textbox2");
else if (string.IsNullOrEmpty(textBox3.Text))
errorsList.Add("You must to fill out textbox3");
else if
{
Regex regex = new Regex(@".........");
Match match = regex.Match(emailTxt.Text);
if (!match.Success)
errorsList.Add("e-mail is inlvalid");
}
//.....
}
我必须使用任何单元测试框架对其进行测试。我想知道是否可以在这里进行单元测试?我想不是吧?