<?xml-stylesheet type="text/xsl" href="/style/testcase.xsl"?>
<t:test xmlns:t="http://xproc.org/ns/testsuite"
      xmlns:p="http://www.w3.org/ns/xproc"
      xmlns:px="http://xproc.dev.java.net/ns/extensions"
      xmlns:c="http://www.w3.org/ns/xproc-step"
      xmlns:err="http://www.w3.org/ns/xproc-error"
      error="err:XC0050">
<t:title>Test for err:XC0050 - 001</t:title>

<t:description xmlns="http://www.w3.org/1999/xhtml">
  <p>Tests if dynamic error XC0050 is thrown if the URI scheme is not supported or the step cannot store to the specified location.</p>  
</t:description>

<t:input port='source'>
  <document>
    <title>Some Title</title>
    <para>Some paragraph.</para>
  </document>
</t:input>

<t:pipeline>
  <p:declare-step version='1.0' name="main">
    <p:input port="source"/>
    <p:store name="store" href="unknownurischeme:///tmp/testout.xml"/>
  </p:declare-step>
</t:pipeline>

</t:test>


