Skip to content

Instantly share code, notes, and snippets.

@datenreisender
Created November 21, 2012 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save datenreisender/4127226 to your computer and use it in GitHub Desktop.
Save datenreisender/4127226 to your computer and use it in GitHub Desktop.
using NUnit.Framework;
namespace Algebra
{
[TestFixture]
public class AlgebraTest
{
[Test]
public void showsAdditionWorks()
{
Assert.AreEqual(5, 2 + 3);
}
[Test]
public void failsWithWrongMultiplication()
{
Assert.AreEqual(5, 2 * 3);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment