Attention: Confluence is not suitable for the storage of highly confidential data. Please ensure that any data classified as Highly Protected is stored using a more secure platform.
If you have any questions, please refer to the University's data classification guide or contact ict.askcyber@sydney.edu.au

Skip to end of banner
Go to start of banner

Gift/Pledge Unit Testing

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 11 Next »

Processes/Sub-flows


USYD Automate task for GA for Pledge (subflow)

Background of issue on fix/changes:

  • Task record is created multiple times after Gift Plege Status changed to Pending Review

  1. Open an existing Gift record on an account where Pledge Status is not Pending Review

    1. Update Pledge Status to Pending Review

  2. Check that a Task record is created for Gift Administration group


USYD AQC Donor Contact Type Auto-Updater (subflow)

Background of issue:

  • Found that changes will be made even if change on field is not exactly changed.

Fix/Change:

Specific testing on this flow’s added criteria to check if Usyd_Gift_Driver_Derivation__c = false can only be done through debug of the flow.

  1. Open a gift record and set Usyd_Gift_Driver_Derivation__c to false through anonymous apex.

update new AQB__Gift__c(
 Id = '[GIFTRecord_Id]',
 Usyd_Gift_Driver_Derivation__c = false
);

2. Open debug on this flow.

3. Debug on your Gift record and set the Record_Prior to a Gift record where related Account record is different.

4. Confirm that test path is as follows.


USYD Update Related Gift Implementation

Background of issue:

  • Found that an update on GIft Implemetation record will still be done even if prior Stage is equal to 5. GI - Kick Off.

Fix/Change:

  • Add a Filter Condition in getGiftImp (Get Record): where Stage does not equal to 5. GI - Kick Off.

  1. Open a GIft Implementation record and make sure Stage is not 5. GI - Kick Off and Gift Pledge field is NOT populated with a GIft record.

  2. Navigate to the related Opportunity record and open any of its related Gift record.

  3. Do an update on the Gift record on any fields and save.

  4. Check the Gift Implementation record that the Stage is updated to 5. GI - Kick Off and Gift/Pledge field is populated.


USYD Update Pledge Status (subflow)

Background of issue:


USYD Update Credited Contacts and GRC Rollup (subflow)

Background of issue:

Fix/Change:


USYD Update Text Area Description (subflow)

Background of issue:

Fix/Change:


USYD Gift Driver Derivation (subflow)

Background of issue:

Fix/Change:

  • No labels