You need to sign in to do that
Don't have an account?
BALA_RAM
Can you please give me Idea about this class for Testclass.If you know please send me code
public class accountlistpage{
// ApexPages.StandardSetController must be instantiated
// for standard list controllers
public ApexPages.StandardSetController setCon {
get {
if(setCon == null) {
setCon = new ApexPages.StandardSetController(Database.getQueryLocator(
[select name,phone from Account]));
}
return setCon;
}
set;
}
// Initialize setCon and return a list of records
public List<Account> getAccount() {
return (List<Account>) setCon.getRecords();
}
}