Commit c38af3d5 authored by Yann Garcia's avatar Yann Garcia
Browse files

TTF T027: Finalyze review MEC-021

parent 4620d04f
Loading
Loading
Loading
Loading
+1700 −1483

File changed.

Preview size limit exceeded, changes collapsed.

+46 −0
Original line number Diff line number Diff line
@@ -13,6 +13,52 @@ module AtsMec_ApplicationMobiltyServiceAPI_TestControl {
  control {
    
    if (PICS_MEC_PLAT and PICS_SERVICES) {
      execute(TC_MEC_MEC021_SRV_AMS_001_OK_01());
      execute(TC_MEC_MEC021_SRV_AMS_001_OK_02());
      execute(TC_MEC_MEC021_SRV_AMS_001_OK_03());
      execute(TC_MEC_MEC021_SRV_AMS_001_OK_04());
      execute(TC_MEC_MEC021_SRV_AMS_001_OK_05());
      execute(TC_MEC_MEC021_SRV_AMS_001_BR());

      execute(TC_MEC_MEC021_SRV_AMS_002_OK());
      execute(TC_MEC_MEC021_SRV_AMS_002_BR());

      execute(TC_MEC_MEC021_SRV_AMS_003_OK());
      execute(TC_MEC_MEC021_SRV_AMS_003_BR());

      execute(TC_MEC_MEC021_SRV_AMS_004_OK());
      execute(TC_MEC_MEC021_SRV_AMS_004_BR());

      execute(TC_MEC_MEC021_SRV_AMS_005_OK());
      execute(TC_MEC_MEC021_SRV_AMS_005_NF());

      execute(TC_MEC_MEC021_SRV_AMS_006_OK());
      execute(TC_MEC_MEC021_SRV_AMS_006_NF());

      execute(TC_MEC_MEC021_SRV_AMS_007_OK());
      execute(TC_MEC_MEC021_SRV_AMS_007_BR());
      execute(TC_MEC_MEC021_SRV_AMS_007_NF());

      execute(TC_MEC_MEC021_SRV_AMS_008_OK());

      execute(TC_MEC_MEC021_SRV_AMS_009_OK());

      execute(TC_MEC_MEC021_SRV_AMS_009_OK());

      execute(TC_MEC_MEC021_SRV_AMS_011_OK());
      execute(TC_MEC_MEC021_SRV_AMS_011_NF());

      execute(TC_MEC_MEC021_SRV_AMS_012_OK());
      execute(TC_MEC_MEC021_SRV_AMS_012_BR());
      execute(TC_MEC_MEC021_SRV_AMS_012_NF());

      execute(TC_MEC_MEC021_SRV_AMS_013_OK());
      execute(TC_MEC_MEC021_SRV_AMS_013_NF());

      execute(TC_MEC_MEC021_SRV_AMS_014_OK());
      execute(TC_MEC_MEC021_SRV_AMS_014_NF());

      execute(TC_MEC_MEC021_SRV_AMS_015_OK_01());
    }

  } // End of 'control' statement
+0 −7
Original line number Diff line number Diff line
sources := \
    ttcn/Ams_Pics.ttcn \
    ttcn/Ams_Pixits.ttcn \
    ttcn/Ams_EncdecDeclarations.ttcn \
    ttcn/Ams_Templates.ttcn \
    ttcn/Ams_TypesAndValues.ttcn \
+0 −22
Original line number Diff line number Diff line
module Ams_EncdecDeclarations {

  import from Ams_TypesAndValues all;
  
  external function enc_AppMobilityServiceInfo(in AppMobilityServiceInfo p_app_mobility_service_info) return octetstring
  with { extension "prototype (convert) encode(JSON)"; extension "printing(pretty)" };
  external function dec_AppMobilityServiceInfo(in octetstring p_pdu) return AppMobilityServiceInfo
  with { extension "prototype (convert) decode(JSON)" };

  external function enc_RegistrationRequest(in RegistrationRequest p_registration_request) return octetstring
  with { extension "prototype (convert) encode(JSON)"; extension "printing(pretty)" };
  external function dec_RegistrationRequest(in octetstring p_pdu) return RegistrationRequest
  with { extension "prototype (convert) decode(JSON)" };
  
  
  external function enc_RegistrationInfo(in RegistrationInfo p_registration_info) return octetstring
  with { extension "prototype (convert) encode(JSON)"; extension "printing(pretty)" };
  external function dec_Registrationinfo(in octetstring p_pdu) return RegistrationInfo
  with { extension "prototype (convert) decode(JSON)" };


} // End of module Ams_EncdecDeclarations
+0 −8
Original line number Diff line number Diff line
module Ams_Pics {
  
  /**
   * @desc Does the IUT support LocationAPI?
   */
  modulepar boolean PICS_AMS_API_SUPPORTED := true;
  
} // End of module LocationAPI_Pics 
Loading