You need to sign in to do that
Don't have an account?
ran67
Test case help,
hi
how to declare these part in testcase
Public class test
{
public test(string color,string item)
{
this.color=color;
this.item=item;
}
}
how to decalre the Parametrized constructor in testcase ........please help me
Test t = new test(Red,Item0);
Hope it helps!!
Hi
put single quote.....
Test t = new test('Red','Item0');
It will work ...
Thanks
asish