How to find component dependencies in Salesforce?
Sample Components with Dependencies: Sample Apex Controller: public class ExampleController { public static String test() { System.debug( 'Testing' ); return 'Testing'; } } Sample Apex Test Class: @isTest public class ....