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

Setup basics of the Test Adapter

parent 0f103c1e
Loading
Loading
Loading
Loading
+5 −2
Original line number Original line Diff line number Diff line
@@ -4,10 +4,13 @@
			"path": "."
			"path": "."
		},
		},
		{
		{
			"path": "../../../tmp/osmo-ttcn3-hacks"
			"path": "../pipeline-scripts"
		},
		},
		{
		{
			"path": "../pipeline-scripts"
			"path": "../../tmp/titan_5gngap_per_issue"
		},
		{
			"path": "../nas"
		}
		}
	],
	],
	"settings": {
	"settings": {
+11 −0
Original line number Original line Diff line number Diff line
/*!
 * \file      NGAPPort.cc
 * \brief     CC file for NGAPPort.
 * \author    ETSI TTF041
 * \copyright ETSI Copyright Notification
 *            No part may be reproduced except as authorized by written permission.
 *            The copyright and the foregoing restriction extend to reproduction in all media.
 *            All rights reserved.
 * \version   0.1
 */

#include "loggers.hh"
#include "loggers.hh"


#include "LibNGAP_Interface.hh"
#include "LibNGAP_Interface.hh"
+11 −1
Original line number Original line Diff line number Diff line
/*!
 * \file      NGAPPort.hh
 * \brief     Header file for NGAPPort.
 * \author    ETSI TTF041
 * \copyright ETSI Copyright Notification
 *            No part may be reproduced except as authorized by written permission.
 *            The copyright and the foregoing restriction extend to reproduction in all media.
 *            All rights reserved.
 * \version   0.1
 */

#pragma once
#pragma once


#include "LibNGAP_Interface.hh"
#include "LibNGAP_Interface.hh"
@@ -11,7 +22,6 @@ namespace NGAP__PDU__Descriptions{
}
}
namespace LibNGAP__Interface {
namespace LibNGAP__Interface {


  //class HttpPort : public HttpPort_BASE {
  class  NGAPPort : public NGAPPort_BASE {
  class  NGAPPort : public NGAPPort_BASE {
    params _cfg_params;
    params _cfg_params;
    params _layer_params;
    params _layer_params;
+11 −0
Original line number Original line Diff line number Diff line
/*!
 * \file      ngap_layer.cc
 * \brief     CC file for NGAP protocol layer.
 * \author    ETSI TTF041
 * \copyright ETSI Copyright Notification
 *            No part may be reproduced except as authorized by written permission.
 *            The copyright and the foregoing restriction extend to reproduction in all media.
 *            All rights reserved.
 * \version   0.1
 */

#include "ngap_types.hh"
#include "ngap_types.hh"


#include "NGAP_TestSystem.hh"
#include "NGAP_TestSystem.hh"
+2 −2
Original line number Original line Diff line number Diff line
/*!
/*!
 * \file      ngap_layer.hh
 * \file      ngap_layer.hh
 * \brief     Header file for ITS NGAP protocol layer.
 * \brief     Header file for NGAP protocol layer.
 * \author    ETSI TTF T033
 * \author    ETSI TTF041
 * \copyright ETSI Copyright Notification
 * \copyright ETSI Copyright Notification
 *            No part may be reproduced except as authorized by written permission.
 *            No part may be reproduced except as authorized by written permission.
 *            The copyright and the foregoing restriction extend to reproduction in all media.
 *            The copyright and the foregoing restriction extend to reproduction in all media.
Loading