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
shravani milshravani mil 

Invalid conversion from runtime type Opportunity to Qill__c

error: at below line Invalid conversion from runtime type Opportunity to Qill__c

Test Class line:
ApexPages.StandardController sc = new ApexPages.standardController(testOppty);

   Controller  controller = new Controller(sc);

Class line:
 this.q = (Qill__c)stdController.getRecord();
 
Best Answer chosen by shravani mil
Rohit K SethiRohit K Sethi
Hi shravani mil,

In test class you are passing Opportunity record and In your class you are using the Qill__c object.

ApexPages.StandardController sc = new ApexPages.standardController(testOppty);

So you Need to set Qill__c record into a standardController paramter So that the controller can be convert the object value into Qill__c type.
e.g. 
     ApexPages.StandardController sc = new ApexPages.standardController(QillRecord);

Create QillRecord or any other variable of Qill__c type and then pass to standard Controller.


If this post solves your problem kindly mark it as solution.
Thanks.