Kernel::Test::Role::Environment::HandlesGenericLock

NAME

Kernel::Test::Role::Environment::HandlesGenericLock – role to handle testing of generic locks.

PUBLIC INTERFACE

UnlockAll()

Unlock all generic locks.

    $Self->UnlockAll();

LockList()

Gets the IDs of all generic locks.

    my $Locks = $Self->LockList();

Returns:

    $Locks = (
        'ID-1',
        'ID-2',
        'ID-3',
    );
Scroll to Top