The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
44 views

conditional statement throwing error in code coverage

Below I mentioned my coding for(Schedules__c custObj : SchedulesList) { if (custObj.Forecastupdated__c != custObj.ForecastCategory__c || custObj.ThisMonthUpdated__c != ...
5
votes
1answer
116 views

Apex class Code Coverage stuck at 0% (No coverage data) after running test class

I have two classes: ClassA.cls - was generated from a WSDL some time ago. Currently on API v22.0 and hasn't been changed recently. Test_ClassA.cls - calls a large number of constructors in ClassA to ...
2
votes
1answer
38 views

How filter Apex Class View on code coverage?

In the Apex Classes page, how can I create a view that filters on code coverage ? Code coverage is one of the fields selectable so I figured I could do just do: Code coverage - less then - 90 But ...
1
vote
1answer
42 views

Code Coverage - Blue versus Red

I have various ranges of code that never show as "covered" in Apex Tests. Here are two examples. Could someone give me some guidance on them? How would I cover them? One: ((Just the ...