Working with external objects I am facing issues in a testclass.1. Inserting a (list of) record requires to use of a call like this.List<Database.SaveResult> results = Database.insertAsync(theNewRecords, new CallbackClass());In this CallBackClass a "override public void processSave(Database.SaveResult saveResult)" will provide assistance to process the newly formed id of this insert.Works fine in real-live. How can I test-run this processSave method? The test.stoptest() does not do the trick.