pub fn can_deposit_below_minimum<T, AccountId>(_dust_trap: Option<AccountId>)where
    T: Mutate<AccountId>,
    <T as Inspect<AccountId>>::Balance: AtLeast8BitUnsigned + Debug,
    AccountId: AtLeast8BitUnsigned,
Expand description

Test the can_deposit function for returning a minimum balance error.

This test verifies that the can_deposit function returns DepositConsequence::BelowMinimum when depositing below the minimum balance.

Type Parameters

- T: Implements Mutate<AccountId>.
- AccountId: Account identifier implementing AtLeast8BitUnsigned.