eZ\Publish\Core\REST\Server\Tests\Input\Parser\SessionInputTest::testParseExceptionOnMissingIdentifier PHP Method

testParseExceptionOnMissingIdentifier() public method

Test SessionInput parser throwing exception on missing password.
    public function testParseExceptionOnMissingIdentifier()
    {
        $inputArray = array('login' => 'Login Foo');
        $sessionInput = $this->getParser();
        $sessionInput->parse($inputArray, $this->getParsingDispatcherMock());
    }