OrgCheck
OrgCheck copied to clipboard
Inspect the results of Apex Test Classes
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'