Created
September 21, 2016 21:22
-
-
Save nbxx/93df9ddc6de778ac743e3d22f59c7629 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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