Commit 9fe5be2c authored by pintar's avatar pintar
Browse files

New tests for clause 6.2.12

parent adb01750
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
/***************************************************
 ** @author   STF 475
 ** @version  0.0.1
 ** @purpose  9:6.2.12, Verify mapping of an anyURI type
 ** @verdict  pass reject
 ***************************************************/
module Neg_060212_any_uri_001 {

    import from schema_Neg_060212_any_uri_001 language "XSD" all;
    
    template E1 m_msg := "http://etsi.org\r\n\t";//String with no CRLFHT

//#TC_Neg
}
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="schema:Neg_060212_any_uri_001"
    xmlns:ns="schema:Neg_060212_any_uri_001">
    <simpleType name="t1">
        <restriction base="anyURI"/>
    </simpleType>
    <element name="e1" type="ns:t1"/>
</schema>
 No newline at end of file
+14 −0
Original line number Diff line number Diff line
/***************************************************
 ** @author   STF 475
 ** @version  0.0.1
 ** @purpose  9:6.2.12, Verify mapping of an anyURI type
 ** @verdict  pass reject
 ***************************************************/
module Neg_060212_any_uri_002 {

    import from schema_Neg_060212_any_uri_002 language "XSD" all;
    
    template E1 m_msg := "http://etsi.org	";//String with no HT - Horizontal TAB

//#TC_Neg
}
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="schema:Neg_060212_any_uri_002"
    xmlns:ns="schema:Neg_060212_any_uri_002">
    <simpleType name="t1">
        <restriction base="anyURI"/>
    </simpleType>
    <element name="e1" type="ns:t1"/>
</schema>
 No newline at end of file
+14 −0
Original line number Diff line number Diff line
/***************************************************
 ** @author   STF 475
 ** @version  0.0.1
 ** @purpose  9:6.2.12, Verify mapping of an anyURI type
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/
module Pos_060212_any_uri_001 {

    import from schema_Pos_060212_any_uri_001 language "XSD" all;
    
    template E1 m_msg := "http://etsi.org";

//#TC
}
Loading