function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Akshit HuriaAkshit Huria 

how to write test class for Apex controller which has wrapper class

---------Apex controller-------------------

public class sale
{
    public string reas{get; set;}
    public String Index{get; set; }
    public String s{get; set; }
    public List<wclass> sal1{get; set;}
    public List<Selectoption> options;
    public Decimal tval1{get; set;}
    public sale() 
    {
        sal1=new list<wclass>();
        sal1.add(new wclass(new Sales__c(),new list<selectoption>(),0 ));        
    }
    public void c1show()
    {
        options = new List<SelectOption>();
         s=System.currentPageReference().getParameters().get('sss');
        List<Contact> c=new List<Contact>();
        c=[select id,name from contact where Account.Id=:s];
        for(contact c1:c)
        {
            options.add(new SelectOption(c1.id,c1.name));
        }
        Account a=[select AnnualRevenue from account where id=:s];
        tval1=a.AnnualRevenue;
        String q=String.valueOf(tval1);
        System.debug(q);
        for(Integer i=0;i<sal1.size();i++)
        {
            if(s==sal1.get(i).l1.Aname__c)
            {
                sal1.set(i,new wclass(new Sales__c(),options,tval1));
            }
        }
    }
    public void ar()
    {
        wclass s1 =new wclass(new Sales__c(),new list<selectoption>(),0.0);
        sal1.add(s1);
    }
    public void rmv()
    {
        Integer rm=Integer.valueOf(ApexPages.currentPage().getParameters().get('Index'));
        System.debug(rm);
        sal1.remove(rm-1); 
    }
    public void gpdf()
    {
        reas='pdf';
    }
    public class wclass
    {
        public Sales__c l1{get;set;}
        public list<selectoption> ls{get;set;}
        public Decimal tval {get; set;}
        public wclass(Sales__c s1, list<selectoption> s2,Decimal s3)
        {
            l1=s1;
            ls=s2;
            tval=s3;
        }
    }
}

--------------test class---------------------


@isTest (SeeAllData = true)
private class salestest{
    public static testMethod void testMyController() {
         PageReference pageRef = Page.sales; 
         sale saletest =new sale();
        Test.startTest();
        saletest.reas='pdf';
         saletest.tval1=35000000;
        saletest.s='0012800000Mw6WV';
        saletest.Index='2';
        Account a=[select AnnualRevenue from account where id=:saletest.s];
        contact c1= new contact();
       // c1.name='akshit';
         saletest.c1show();
         saletest.ar();
         saletest.rmv();
        saletest.gpdf();
        Test.stopTest();
    }
 }

 
ManojSankaranManojSankaran
Hi Akshit,


You have already called a class which invokes the wrapper class.

Saletest.ar();
This will automatically call the wrapper class.

If you want to set a wrapper class before calling the class. Below is an example for this.

options = new List<SelectOption>(); 
List<Contact> c=new List<Contact>();
c=[select id,name from contact where Account.Id=:s];
for(contact c1:c) {
options.add(new SelectOption(c1.id,c1.name));
}
sale saletest =new sale();
saletest.reas='pdf';
saletest.tval1=35000000;
insert salestest;

sale.wclass WrapperInstance = new sale.wclass(salestest,options,0);



Thanks
Manoj S

 
Akshit HuriaAkshit Huria
Hi Manoj
But it still has same problem.
Amit Chaudhary 8Amit Chaudhary 8
Please check below post for test classes
1) http://amitsalesforce.blogspot.in/2015/06/best-practice-for-test-classes-sample.html

Please try to update your test class like below
@isTest 
private class salestest{
    public static testMethod void testMyController() 
	{
		Account testAccount = new Account();
		testAccount.Name='Test Account' ;
		testAccount.AnnualRevenue =35000000;
		insert testAccount;
 
		Contact cont = new Contact();
		cont.FirstName ='FirstName';
		cont.LastName ='LastName';
		cont.accountid =testAccount.id;
		insert cont;	
 
		Test.startTest();

			PageReference pageRef = Page.sales; 
			pageRef.getParameters().put('sss', String.valueOf(testAccount.Id));
			pageRef.getParameters().put('Index', '1');
			Test.setCurrentPage(pageRef);

			sale saletest =new sale();
			saletest.reas='pdf';
			saletest.c1show();
			saletest.ar();
			saletest.rmv();
			saletest.gpdf();
			
		Test.stopTest();
    }
 }

Please follow below salesforce Best Practice for Test Classes :-

1. Test class must start with @isTest annotation if class class version is more than 25
2. Test environment support @testVisible , @testSetUp as well
3. Unit test is to test particular piece of code working properly or not .
4. Unit test method takes no argument ,commit no data to database ,send no email ,flagged with testMethod keyword .
5. To deploy to production at-least 75% code coverage is required
6. System.debug statement are not counted as a part of apex code limit.
7. Test method and test classes are not counted as a part of code limit
9. We should not focus on the  percentage of code coverage ,we should make sure that every use case should covered including positive, negative,bulk and single record .
Single Action -To verify that the the single record produces the correct an expected result .
Bulk action -Any apex record trigger ,class or extension must be invoked for 1-200 records .
Positive behavior : Test every expected behavior occurs through every expected permutation , i,e user filled out every correctly data and not go past the limit .
Negative Testcase :-Not to add future date , Not to specify negative amount.
Restricted User :-Test whether a user with restricted access used in your code .
10. Test class should be annotated with @isTest .
11 . @isTest annotation with test method  is equivalent to testMethod keyword .
12. Test method should static and no void return type .
13. Test class and method default access is private ,no matter to add access specifier .
14. classes with @isTest annotation can't be a interface or enum .
15. Test method code can't be invoked by non test request .
16. Stating with salesforce API 28.0 test method can not reside inside non test classes .
17. @Testvisible annotation to make visible private methods inside test classes.
18. Test method can not be used to test web-service call out . Please use call out mock .
19. You can't  send email from test method.
20.User, profile, organization, AsyncApexjob, Corntrigger, RecordType, ApexClass, ApexComponent ,ApexPage we can access without (seeAllData=true) .
21. SeeAllData=true will not work for API 23 version eailer .
22. Accessing static resource test records in test class e,g List<Account> accList=Test.loadData(Account,SobjectType,'ResourceName').
23. Create TestFactory class with @isTest annotation to exclude from organization code size limit .
24. @testSetup to create test records once in a method  and use in every test method in the test class .
25. We can run unit test by using Salesforce Standard UI,Force.com IDE ,Console ,API.
26. Maximum number of test classes run per 24 hour of period is  not grater of 500 or 10 multiplication of test classes of your organization.
27. As apex runs in system mode so the permission and record sharing are not taken into account . So we need to use system.runAs to enforce record sharing .
28. System.runAs will not enforce user permission or field level permission .
29. Every test to runAs count against the total number of DML issued in the process .


Please let us know if this post will help you
 
vaishnavi gupta 15vaishnavi gupta 15
How we can write a test class for the following apex class which contains lists in argument of the function:

Apex Class-----------------------------------------------------------------------------------------------------

 @AuraEnabled 
    public static void SelectedProd(List<PriceBookEntry>selectedRecordList, String RecId, List<Integer> quantityList){
        system.debug('selectedRecordList ===>>>' + selectedRecordList);
        system.debug('RecId ===>>>' + RecId);
        system.debug('quantityList ===>>>' + quantityList);
        
        List<Quote> lstQuote = [Select id, Opportunity.Class__c, Opportunity.MFG_AT__c ,
                                Opportunity.Zero_Cooling__c ,Discount__c,
                                (SELECT Id, Product__c, Quantity__c FROM Quote_Line_Items__r)
                                from Quote 
                                where id =: RecId LIMIT 1];
        
        Map<Id, Quote_Line_Item_Custom__c> prodIdQLIObjMap = new Map<Id, Quote_Line_Item_Custom__c> ();
        for(Quote_Line_Item_Custom__c qliObj : lstQuote[0].Quote_Line_Items__r) {
            prodIdQLIObjMap.put(qliObj.Product__c, qliObj);
        }
        
        system.debug('lstQuote ===>>>' + lstQuote[0].Opportunity.MFG_AT__c);
        User UsedDeatil = [select id,Name,Level__c 
                           from User 
                           where id =: userInfo.getUserId()];
        
        String Level = UsedDeatil.Level__c;
        
    }