Skip to content

Instantly share code, notes, and snippets.

@nbxx
Created September 21, 2016 21:22
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 nbxx/93df9ddc6de778ac743e3d22f59c7629 to your computer and use it in GitHub Desktop.
Save nbxx/93df9ddc6de778ac743e3d22f59c7629 to your computer and use it in GitHub Desktop.
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace NETCoreTests
{
[TestClass]
public class TestClass
{
[TestMethod]
public void TestMethodPass()
{
Assert.IsTrue(true);
}
[TestMethod]
public void TestMethodFail()
{
Assert.IsTrue(false);
}
[TestMethod]
public void TestStringEqual()
{
var expected = "Hello";
Assert.AreEqual(expected,"heLLo");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment