Commit 70869cea authored by stancakapost's avatar stancakapost
Browse files

fixed TC_Neg and also verdict format

parent bdcaef4a
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -2,7 +2,7 @@
 ** @author   STF 475
 ** @author   STF 475
 ** @version  0.0.1
 ** @version  0.0.1
 ** @purpose  9:5.1.3, Verify that it is not allowed to import imports from XSD schemas
 ** @purpose  9:5.1.3, Verify that it is not allowed to import imports from XSD schemas
 ** @verdict  pass accept, ttcn3verdict:pass
 ** @verdict  pass reject
***************************************************/
***************************************************/
// The following requirements are tested:
// The following requirements are tested:
// It is not allowed to import XSD import statements to TTCN-3 (i.e. there is no transitive import
// It is not allowed to import XSD import statements to TTCN-3 (i.e. there is no transitive import
@@ -14,6 +14,6 @@ module Neg_050103_imports_001 {


   template MyType m_msg := 1;
   template MyType m_msg := 1;


//#TC
//#TC_Neg


}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -14,6 +14,6 @@ module Neg_05_top_level_001 {


   template MyType m_msg := 1;
   template MyType m_msg := 1;


//#TC
//#TC_Neg


}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -9,5 +9,5 @@ module Neg_060101_length_001 {
    import from schema_Neg_060101_length_001 language "XSD" all;
    import from schema_Neg_060101_length_001 language "XSD" all;


    template E1 m_msg := {"A","B","C","D"}; //length is 3
    template E1 m_msg := {"A","B","C","D"}; //length is 3
//#TC 
//#TC_Neg
}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -8,5 +8,5 @@ module Neg_060110_maxexclusive_001 {


    import from schema_Neg_060110_maxexclusive_001 language "XSD" all;
    import from schema_Neg_060110_maxexclusive_001 language "XSD" all;


//#TC 
//#TC_Neg
}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -9,5 +9,5 @@ module Neg_060502_date_and_time_001 {
    import from schema_Neg_060502_date_and_time_001 language "XSD" all;
    import from schema_Neg_060502_date_and_time_001 language "XSD" all;


    template E1 m_msg := "2014-04-17T13:59"; //invalid value
    template E1 m_msg := "2014-04-17T13:59"; //invalid value
//#TC 
//#TC_Neg
}
}
Loading