Elgg\SystemMessagesServiceTest::testMessagesStoredInSession PHP Method

testMessagesStoredInSession() public method

    function testMessagesStoredInSession()
    {
        $this->svc->addSuccessMessage('s1');
        $this->assertEquals(['success' => ['s1']], $this->session->get('msg'));
    }