~simone.busoli/nunit-vs-adapter/nunit-vs-adapter

« back to all changes in this revision

Viewing changes to src/NUnitTestAdapterTests/NUnitTestHelperTests.cs

  • Committer: Charlie Poole
  • Date: 2012-02-15 18:56:30 UTC
  • Revision ID: charlie@nunit.org-20120215185630-97c4l33qan3kekmy
Changes to allow running with the latest (pre-beta) version of Visual Studio

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
            var testConverter = new TestConverter(mockAssemblyPath);
50
50
            var test = GetTest(testName);
51
51
            var testCase = testConverter.ConvertTestCase(test);
52
 
            Assert.That(testCase.Name, Is.EqualTo(test.TestName.FullName));
 
52
            Assert.That(testCase.FullyQualifiedName, Is.EqualTo(test.TestName.FullName));
53
53
            Assert.That(testCase.DisplayName, Is.EqualTo(test.TestName.Name));
54
54
            Assert.That(testCase.Source, Is.SamePath(mockAssemblyPath));
55
55
            Assert.That(testCase.ExecutorUri, Is.EqualTo(new Uri(NUnitTestExecutor.ExecutorUri)));