eZ\Publish\Core\REST\Common\Tests\MessageTest::testCreateMessageConstructorBody PHP Method

testCreateMessageConstructorBody() public method

Tests creating message with body set through constructor.
    public function testCreateMessageConstructorBody()
    {
        $message = new Common\Message(array(), 'Hello world!');
        $this->assertSame('Hello world!', $message->body);
    }