OrgCheck icon indicating copy to clipboard operation
OrgCheck copied to clipboard

Inspect the results of Apex Test Classes

Open VinceFINET opened this issue 10 months ago • 0 comments

Is your feature request related to a problem? Please describe. Not a problem, it's just not included in Org Check today.

Describe the solution you'd like Have information about the execution of my tests and score them. Like:

  • when a test fails (at least one method failed or can't ompile etc..)
  • when a method fails (at the level of the method)
  • when the run time of a method exceeds a certain time (to be defined)
  • when the run time of a whole test class exceeds a certain time (to be defined)

Describe alternatives you've considered I can do the SOQL myself but that will be nice to have the data and the omputation of scores in the app !!!

Additional context SOQL i tested: SELECT ApexClass.name, MethodName, ApexTestRunResult.Status, ApexTestRunResult.TestTime, RunTime, Outcome FROM ApexTestResult WHERE Outcome != 'Fail'

VinceFINET avatar May 03 '24 09:05 VinceFINET