Commit 066a09ac authored by YannGarcia's avatar YannGarcia
Browse files

Separate typing and test system

parent d053e1d4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@ module LibItsIpv6OverGeoNetworking_Templates {
    import from LibCommon_DataStrings all;
    
    //LibIts
    import from LibItsIpv6OverGeoNetworking_TestSystem all;
    import from LibItsIpv6OverGeoNetworking_TypesAndValues all;
    import from LibItsGeoNetworking_TypesAndValues all;
    import from LibItsExternal_TypesAndValues {type MacAddress};
+32 −1
Original line number Diff line number Diff line
@@ -308,6 +308,37 @@ module LibItsIpv6OverGeoNetworking_TypesAndValues {
        
    } // end acPrimitives
    
    group networkAndTransportPrimitives { 
            
        group nt2Primitives {
            
            /**
             * @desc NT2 IPv6 over GeoNetworking Indication Primitive 
             */
            type record IPv6OverGeoNetworkingInd {
                charstring interface,
                MacAddress macSourceAddress,
                MacAddress macDestinationAddress,
                Ipv6Packet ipv6Packet
            }
            
            /**
             * @desc NT2 IPv6 over GeoNetworking Request Primitive 
             */
            type record IPv6OverGeoNetworkingReq {
                charstring interface,
                MacAddress macSourceAddress,
                MacAddress macDestinationAddress,
                Ipv6Packet ipv6Packet
            }
            
        } // end nt2Primitives
        
    } // End of group networkAndTransportPrimitives    
    with {
        encode "LibIts_Interface"
    } // end interfacePrimitives        
     
}
with {
    variant ""
+1 −3
Original line number Diff line number Diff line
sources := \
LibItsIpv6OverGeoNetworking_EncdecDeclarations.ttcn \
LibItsIpv6OverGeoNetworking_Functions.ttcn          \
LibItsIpv6OverGeoNetworking_Pics.ttcn               \
LibItsIpv6OverGeoNetworking_Pixits.ttcn             \
LibItsIpv6OverGeoNetworking_Templates.ttcn          \
LibItsIpv6OverGeoNetworking_TestSystem.ttcn         \
LibItsIpv6OverGeoNetworking_TypesAndValues.ttcn
+0 −31
Original line number Diff line number Diff line
@@ -71,35 +71,4 @@ module LibItsIpv6OverGeoNetworking_TestSystem {
        
    } // End of component Ipv6OverGeoNetworking
    
    group networkAndTransportPrimitives { 
            
        group nt2Primitives {
            
            /**
             * @desc NT2 IPv6 over GeoNetworking Indication Primitive 
             */
            type record IPv6OverGeoNetworkingInd {
                charstring interface,
                MacAddress macSourceAddress,
                MacAddress macDestinationAddress,
                Ipv6Packet ipv6Packet
            }
            
            /**
             * @desc NT2 IPv6 over GeoNetworking Request Primitive 
             */
            type record IPv6OverGeoNetworkingReq {
                charstring interface,
                MacAddress macSourceAddress,
                MacAddress macDestinationAddress,
                Ipv6Packet ipv6Packet
            }
            
        } // end nt2Primitives
        
    } // End of group networkAndTransportPrimitives    
    with {
        encode "LibIts_Interface"
    } // end interfacePrimitives        
     
} // End of module LibItsIpv6OverGeoNetworking_TestSystem
Loading