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

« back to all changes in this revision

Viewing changes to src/NUnitTestAdapterTests/TestConverterTests.cs

  • Committer: Charlie Poole
  • Date: 2012-10-10 15:09:34 UTC
  • Revision ID: charlie@nunit.org-20121010150934-e9yt9fv3wsr37us0
Update project to enable building with VS2012 RTM

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        
21
21
        // NOTE: If the location of the FakeTestCase method in the 
22
22
        // file changes, update the value of FAKE_LINE_NUMBER.
23
 
        private static readonly int FAKE_LINE_NUMBER = 29;
 
23
        private static readonly int FAKE_LINE_NUMBER = 30;
24
24
 
25
25
        private NUnit.Core.ITest fakeNUnitTest;
26
26
        private NUnit.Core.TestResult fakeNUnitResult;
27
27
 
28
28
        private void FakeTestCase()
29
 
        { // FAKE_LINE_NUMBER should be this line
 
29
        {
 
30
            Assert.True(true); // FAKE_LINE_NUMBER should be this line
30
31
        }
31
32
 
32
33
        [SetUp]