Programming Language PHP

Namespace Oro\Component\MessageQueue\Client

Class MessagePriority

Method/Function getMessagePriority

Total Examples 1

1 code examples of PHP Oro\Component\MessageQueue\Client\MessagePriority::getMessagePriority extracted from open source projects

Was this example useful?
0
                                                    public function testGetUnknownMessagePriority(): void
    {
        $this->expectExceptionObject(
            new \InvalidArgumentException(
                'Given priority could not be converted to transport\'s one. Got: test'
            )
        );

        MessagePriority::getMessagePriority('test');
    }