// Use the target account for triggering the memo
testObject = new PercentagePostingRule<DefaultEntry>(memoAccount,0.9);
targetAccount.addPostingRule(testObject);
DefaultEntry sourceEntry = EntryFactory.INSTANCE.buildDefaultEntry(sourceAccount, -10L);
DefaultEntry targetEntry = EntryFactory.INSTANCE.buildDefaultEntry(targetAccount, 10L);
// Perform the test (Account will notify PostingRule)
// Can only get an Entry into an Account through a Transaction
Transaction<DefaultEntry> transaction = new Transaction<DefaultEntry>(sourceEntry, targetEntry);
transaction.commit();