Skip to content

Instantly share code, notes, and snippets.

@BrianJVarley
Last active August 29, 2015 14:15
Show Gist options
  • Save BrianJVarley/09d252dbe92d48e0889c to your computer and use it in GitHub Desktop.
Save BrianJVarley/09d252dbe92d48e0889c to your computer and use it in GitHub Desktop.
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