← Back to team overview

nunit-core team mailing list archive

[Bug 1082039] Re: TestContext.CurrentContext.Test.Properties does not work with TestCase is specified

 

** Project changed: nunitv2 => nunit-3.0

-- 
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
https://bugs.launchpad.net/bugs/1082039

Title:
  TestContext.CurrentContext.Test.Properties does not work with TestCase
  is specified

Status in NUnit Test Framework:
  New

Bug description:
  Tried in v2.6 and v2.6.2 through default NUnit Gui runner
  Any property attribute specified on the test method stops coming through as soon as it becomes a TestCase 
  See example below. Identical tests, one is [Test] , one is [TestCase]

  
  [TestFixture]
      public class TestNUnitPropertiesIssue
      {
          [Test]
          [Property("prop1", "prop1value")]
          public void MyPropTest_ok()
          {
              foreach (string key in TestContext.CurrentContext.Test.Properties.Keys)
              {
                  Console.WriteLine("{0}: {1}", key, TestContext.CurrentContext.Test.Properties[key]);
              }
              Assert.AreEqual("prop1value", TestContext.CurrentContext.Test.Properties["prop1"]);
          }

          [TestCase("1")]
          [Property("prop1", "prop1value")]
          public void MyPropTest_fail(string s)
          {
              foreach (string key in TestContext.CurrentContext.Test.Properties.Keys)
              {
                  Console.WriteLine("{0}: {1}", key, TestContext.CurrentContext.Test.Properties[key]);
              }
              Assert.AreEqual("prop1value", TestContext.CurrentContext.Test.Properties["prop1"]);
          }

      }

To manage notifications about this bug go to:
https://bugs.launchpad.net/nunit-3.0/+bug/1082039/+subscriptions


References