为 if else 语句编写单元测试
Writing a unit test for an if else statement
我是单元测试的新手,也是 c# 的新手,非常感谢有关如何编写单元测试以确保 AddGrade 方法中的逻辑正常工作的帮助。所以基本上如果成绩是 >=0 和 <=100 那么成绩是有效的并且它会被添加,其他任何东西都不是并且它应该在控制台中显示错误。
我看到另一个 post 关于在 c# 中对 if-else 语句进行单元测试,并尝试从中解决这个问题,但老实说,这让我感到困惑。我在网上四处看看,尝试了很多不同的方法来尝试解决这个问题,但我发现有时很难将人们的例子应用到我的代码中,所以我认为最好只 post 我的代码并获得一些帮助, 任何帮助将不胜感激:)
我正在使用 Xunit 进行单元测试。该项目在控制台中运行。
这是包含主要方法
的程序class
using System;
using System.Collections.Generic;
namespace GradeBook
{
class Program
{
static void Main(string[] args)
{
var book = new Book("Dave's");
//add grade to the book
book.AddGrade(90.5);
book.AddGrade(80.5);
book.AddGrade(70.5);
book.AddGrade(60.5);
var stats = book.GetStatistics();
Console.WriteLine($"This Gradebooks name is {book.Name}");
Console.WriteLine($"The highest grade is {stats.High:N1}");
Console.WriteLine($"The lowest grade is {stats.Low:N1}");
Console.WriteLine($"The average grade is {stats.Average:N1}");//N1,N2 etc. is number of decimal places
}
}
}
这是本书 class,其中的 AddGrade 方法是我想为
编写单元测试
using System;
using System.Collections.Generic;
namespace GradeBook
{
public class Book
{
public Book(string name)
{
grades = new List<double>();
Name = name;
}
public void AddGrade(double grade)
{
if (grade >= 0 && grade <= 100)
{
grades.Add(grade);
}
else
{
Console.WriteLine("Please enter a value between 0 and 100");
}
}
public Statistics GetStatistics()
{
var result = new Statistics();
result.Average = 0.0;
result.High = double.MinValue;
result.Low = double.MaxValue;
foreach (var grade in grades)
{
Console.WriteLine($"{Name} grade is: {grade}");
result.Low = Math.Min(grade, result.Low);
result.High = Math.Max(grade, result.High);
result.Average += grade;
}
result.Average /= grades.Count;
return result;
}
private List<double> grades = new List<double>() { };
public string Name;
}
}
这是统计数据class
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBook
{
public class Statistics
{
public double Average;
public double High;
public double Low;
}
}
这是我为此编写单元测试的地方
using System;
using System.Collections.Generic;
using Xunit;
namespace GradeBook.Tests
{
public class BookTests
{
[Fact]
public void BookGradeIsValid()
{
var book = new Book("");
book.AddGrade(105);
}
}
}
我建议您修改 AddGrade()
方法以在添加无效成绩时抛出异常:
public void AddGrade(double grade)
{
if (grade >= 0 && grade <= 100)
{
grades.Add(grade);
}
else
{
throw new ArgumentException("grade must be between 0 and 100");
}
}
你可以这样测试:
[Fact]
public void BookGradeIsValid()
{
var book = new Book("");
Assert.Throws<ArgumentExeception>(() => book.AddGrade(101)); // should throw
Assert.Throws<ArgumentExeception>(() => book.AddGrade(-1)); // should throw
book.AddGrade(0); // should not throw
book.AddGrade(100); // should not throw
}
作为提示,不要使用 105 进行测试。直接在边界处使用一个值。如果你有一个错字并且你写了 if (grade >= 0 && grade <= 103)
而不是 100,你将不会在你的测试中意识到这一点。
使用异常有几个优点。首先,您也可以在非控制台应用程序中使用 Book
class。其次,如果出现问题,您可以进行自定义错误处理:
int grade = 300;
try
{
book.AddGrade(grade)
}
catch(ArgumentException)
{
// so many possibilities: log to console or display a MessageBox or
// send an e-mail to system admin or add grade with a default value or ...
}
此外,您不能忽略异常。如果您添加一个具有无效值的成绩,您的程序将停在那里,并且您不会奇怪代码后面的 200 行,为什么缺少一个成绩。
我是单元测试的新手,也是 c# 的新手,非常感谢有关如何编写单元测试以确保 AddGrade 方法中的逻辑正常工作的帮助。所以基本上如果成绩是 >=0 和 <=100 那么成绩是有效的并且它会被添加,其他任何东西都不是并且它应该在控制台中显示错误。
我看到另一个 post 关于在 c# 中对 if-else 语句进行单元测试,并尝试从中解决这个问题,但老实说,这让我感到困惑。我在网上四处看看,尝试了很多不同的方法来尝试解决这个问题,但我发现有时很难将人们的例子应用到我的代码中,所以我认为最好只 post 我的代码并获得一些帮助, 任何帮助将不胜感激:)
我正在使用 Xunit 进行单元测试。该项目在控制台中运行。
这是包含主要方法
的程序class using System;
using System.Collections.Generic;
namespace GradeBook
{
class Program
{
static void Main(string[] args)
{
var book = new Book("Dave's");
//add grade to the book
book.AddGrade(90.5);
book.AddGrade(80.5);
book.AddGrade(70.5);
book.AddGrade(60.5);
var stats = book.GetStatistics();
Console.WriteLine($"This Gradebooks name is {book.Name}");
Console.WriteLine($"The highest grade is {stats.High:N1}");
Console.WriteLine($"The lowest grade is {stats.Low:N1}");
Console.WriteLine($"The average grade is {stats.Average:N1}");//N1,N2 etc. is number of decimal places
}
}
}
这是本书 class,其中的 AddGrade 方法是我想为
编写单元测试 using System;
using System.Collections.Generic;
namespace GradeBook
{
public class Book
{
public Book(string name)
{
grades = new List<double>();
Name = name;
}
public void AddGrade(double grade)
{
if (grade >= 0 && grade <= 100)
{
grades.Add(grade);
}
else
{
Console.WriteLine("Please enter a value between 0 and 100");
}
}
public Statistics GetStatistics()
{
var result = new Statistics();
result.Average = 0.0;
result.High = double.MinValue;
result.Low = double.MaxValue;
foreach (var grade in grades)
{
Console.WriteLine($"{Name} grade is: {grade}");
result.Low = Math.Min(grade, result.Low);
result.High = Math.Max(grade, result.High);
result.Average += grade;
}
result.Average /= grades.Count;
return result;
}
private List<double> grades = new List<double>() { };
public string Name;
}
}
这是统计数据class
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBook
{
public class Statistics
{
public double Average;
public double High;
public double Low;
}
}
这是我为此编写单元测试的地方
using System;
using System.Collections.Generic;
using Xunit;
namespace GradeBook.Tests
{
public class BookTests
{
[Fact]
public void BookGradeIsValid()
{
var book = new Book("");
book.AddGrade(105);
}
}
}
我建议您修改 AddGrade()
方法以在添加无效成绩时抛出异常:
public void AddGrade(double grade)
{
if (grade >= 0 && grade <= 100)
{
grades.Add(grade);
}
else
{
throw new ArgumentException("grade must be between 0 and 100");
}
}
你可以这样测试:
[Fact]
public void BookGradeIsValid()
{
var book = new Book("");
Assert.Throws<ArgumentExeception>(() => book.AddGrade(101)); // should throw
Assert.Throws<ArgumentExeception>(() => book.AddGrade(-1)); // should throw
book.AddGrade(0); // should not throw
book.AddGrade(100); // should not throw
}
作为提示,不要使用 105 进行测试。直接在边界处使用一个值。如果你有一个错字并且你写了 if (grade >= 0 && grade <= 103)
而不是 100,你将不会在你的测试中意识到这一点。
使用异常有几个优点。首先,您也可以在非控制台应用程序中使用 Book
class。其次,如果出现问题,您可以进行自定义错误处理:
int grade = 300;
try
{
book.AddGrade(grade)
}
catch(ArgumentException)
{
// so many possibilities: log to console or display a MessageBox or
// send an e-mail to system admin or add grade with a default value or ...
}
此外,您不能忽略异常。如果您添加一个具有无效值的成绩,您的程序将停在那里,并且您不会奇怪代码后面的 200 行,为什么缺少一个成绩。