Given the following code.
[TestMethod]
public void InitialiseSession()
{
false.Should().BeTrue();
}
Results in :
New exception: "Could not find windows phone test framework.".
I'm using the latest test framework from toolkit (https://nuget.org/packages/WPToolkitTestFx)
Expected results: "True excepted ... "
Comments: Late reply but I was referring to the new MSTest-based unit test framework brought in with the VS2012 Update 2.
[TestMethod]
public void InitialiseSession()
{
false.Should().BeTrue();
}
Results in :
New exception: "Could not find windows phone test framework.".
I'm using the latest test framework from toolkit (https://nuget.org/packages/WPToolkitTestFx)
Expected results: "True excepted ... "
Comments: Late reply but I was referring to the new MSTest-based unit test framework brought in with the VS2012 Update 2.