- Nithya Iyappan
- Posts : 2
Join date : 2014-02-04
wrong number of arguments provided in nunit
Thu Feb 06, 2014 11:50 am
Developed testcase with Testcasesource in selenium using c#. After running the test case in the NUnit, It shows the error as "Wrong Number of arguments provided". And this is my test case code
The 4 values are retrieved and i can see the values in NUnit. But it shows the error as "Wrong number of arguments provided". Can anyaone please help?
- Code:
[TestFixture] class testcases {
static String[] exceldata= readdata("Inputdata.xls", "DATA", "TestCase1");
[SetUp]
public void Setup()
{
//setupcode here
}
[Test, TestCaseSource("exceldata")]
public void Sample (String level,String Username,String password,String FirstName)
{
//testcase code here
}
[TearDown]
public void TearDown()
{
tstlogic.driverquit();
}
The 4 values are retrieved and i can see the values in NUnit. But it shows the error as "Wrong number of arguments provided". Can anyaone please help?
Permissions in this forum:
You cannot reply to topics in this forum