Last active
August 29, 2015 14:15
-
-
Save BrianJVarley/09d252dbe92d48e0889c to your computer and use it in GitHub Desktop.
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 NUnit.Framework; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace MyoTestv4.Tests | |
{ | |
[TestFixture] | |
public class Test1 | |
{ | |
[Test] | |
public void TestAppVM() | |
{ | |
HomeViewModel vm = new HomeViewModel(); | |
string actualName = vm.Name; | |
Assert.AreEqual("Home Page", actualName); | |
} | |
[Test] | |
public void TestAppDB() | |
{ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment