Is Spira Configuration support function parameter in c# with nunit

Friday, December 12, 2014
Avatar
Hi All,

Is Spira Configuration support function parameter, because right now i am not able to run my spira test with function parameter in c#

my code is :

  [Test, SpiraTestCase(418)]
       [TestCaseSource(typeof(AdminModel), "UserValidation")]
          public void PublicAdminSpira(string userName, string password) 
          {
              var page = this.OpenPage<LoginPage>(this.AdminModel.LoginPagePath);
              page.Maximize();
              page.FillInForm(userName, password, false);
              page.Login();
              page.Logout();
            

          }

 i have pass two parameter value and run through nunit, than its not shows passed /failed status in spira test ID.

now if i am not use parameter and run through nunit than it shows status with spira test id as passed/failed for example-
 [Test, SpiraTestCase(418)]
    
          public void PublicAdminSpira() 
          {
              var page = this.OpenPage<LoginPage>(this.AdminModel.LoginPagePath);
              page.Maximize();
              page.FillInForm("username", "passwored", false);
              page.Login();
              page.Logout();
            

          }

please replay...
Thanks
Gangotri
2 Replies
Friday, December 12, 2014
Avatar
inflectra.jimx
re: gangotri Friday, December 12, 2014
Hi Gangotri

I don't believe that NUnit supports passing such parameters that way. We are just annotating the test methods. If you need more help, please log a support ticket.

Regards
Jim
Tuesday, December 16, 2014
Avatar
re: inflectra.jimx Friday, December 12, 2014
Hi Gangotri

We have checked and our Add-In does not support such parameterized tests.

Since NUnit 3.0 (in alpha) is getting rid of the entire plugin system we are looking at ways to replace our current add-in once NUnit 3.0 has been released, so no changes are planned to the current add-in at this time.

Regards

Adam

Spira Helps You Deliver Quality Software, Faster and With Lower Risk

And if you have any questions, please email or call us at +1 (202) 558-6885

 

Statistics
  • Started: Friday, December 12, 2014
  • Last Reply: Tuesday, December 16, 2014
  • Replies: 2
  • Views: 2990