Commit dcf3220c authored by pintar's avatar pintar
Browse files

New tests for clauses 6.7 are added

parent 6431a99e
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
/***************************************************
 ** @author   STF 475
 ** @version  0.0.1
 ** @purpose  9:6.7 Verify that the XSD boolean type shall be mapped to the TTCN-3 boolean type
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/
module Pos_0607_boolean_type_001 {

    import from schema_Pos_0607_boolean_type_001 language "XSD" all;

    template E1 m_msg := true;
//#TC 
}
+4 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<e1el
    xmlns="schema:Pos_0607_boolean_type_001"
>true</e1el>
+8 −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:Pos_0607_boolean_type_001"
  xmlns:types="schema:Pos_0607_boolean_type_001">
    <simpleType name="e1">
        <restriction base="boolean"/>
    </simpleType>
</schema>
+13 −0
Original line number Diff line number Diff line
/***************************************************
 ** @author   STF 475
 ** @version  0.0.1
 ** @purpose  9:6.7 Verify that the XSD boolean type shall be mapped to the TTCN-3 boolean type
 ** @verdict  pass accept, ttcn3verdict:pass
 ***************************************************/
module Pos_0607_boolean_type_002 {

    import from schema_Pos_0607_boolean_type_002 language "XSD" all;

    template E1 m_msg := false;
//#TC 
}
+4 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<e1el
    xmlns="schema:Pos_0607_boolean_type_002"
>0</e1el>
Loading