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
sunny@99-chgsunny@99-chg 

Test coverage for IdeaStandardSetController

Hai All,

 

Please Suggest me for my Task. I need TestCoverage on Apexpages.IdeaStandardSetController.

For my constructor like:

 

public class MyIdeaProfileExtension12 {
private final ApexPages.IdeaStandardSetController ideaSetController;
public MyIdeaProfileExtension12(ApexPages.IdeaStandardSetController controller) {
ideaSetController = (ApexPages.IdeaStandardSetController)controller;

==========================

==========================

==========================
}

public List<Idea> getModifiedIdeas() {

Idea[] ideas = ideaSetController.getIdeaList();
return ideas;
}

 

For my DEV Ideas and related to ideas are Enabled.

Need Urget, For the above Red color constructor.I tried in Many ways.but coudnt find Result

How to call that Constructor Through Constructor..

sunny@99-chgsunny@99-chg

How to call that Constructor Through Test Class..