Last active
October 27, 2015 14:46
-
-
Save WilliamGarrow/7d30ace0d35a43e99c4c to your computer and use it in GitHub Desktop.
C# Unit Testing - Test Method/Class for computing course grade book statistics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Grades; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Grades.Tests | |
{ | |
[TestClass] | |
public class GradeBookTests | |
{ | |
[TestMethod] | |
public void ComputesHighestGrade() | |
{ | |
GradeBook book = new GradeBook(); | |
book.AddGrade(10); | |
book.AddGrade(90); | |
GradeStatistics result = book.ComputeStatistics(); | |
Assert.AreEqual(90, result.HighestGrade); | |
} | |
[TestMethod] | |
public void ComputesLowestGrade() | |
{ | |
GradeBook book = new GradeBook(); | |
book.AddGrade(10); | |
book.AddGrade(90); | |
GradeStatistics result = book.ComputeStatistics(); | |
Assert.AreEqual(10, result.LowestGrade); | |
} | |
[TestMethod] | |
public void ComputesAverageGrade() | |
{ | |
GradeBook book = new GradeBook(); | |
book.AddGrade(91); | |
book.AddGrade(89.5f); | |
book.AddGrade(75); | |
GradeStatistics result = book.ComputeStatistics(); | |
Assert.AreEqual(85.16, result.AverageGrade, 0.01); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment