You need to sign in to do that
Don't have an account?

Test Class Help
Any one help me writing test class for this........
public with sharing class ExpenseKeyWrapper
{
public Integer key {get; set;}
public Expense__c expense {get; set;}
public ExpenseKeyWrapper(){}
public ExpenseKeyWrapper(Integer inKey, Expense__c inExpense)
{
key=inKey;
expense=inExpense;
}
}
Something like this should be sufficient:
All Answers
Something like this should be sufficient:
Thanx for ur help...............