mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
859 B
C++
39 lines
859 B
C++
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* By using this file, you agree to the terms and conditions set
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
* the distribution.
|
|
*
|
|
*/
|
|
|
|
#include "ttcn3_ip_ctrl_interface.h"
|
|
#include "ttcn3_ip_sock_interface.h"
|
|
#include "ttcn3_srb_interface.h"
|
|
#include "ttcn3_sys_interface.h"
|
|
#include "ttcn3_ut_interface.h"
|
|
|
|
int if_handler_test()
|
|
{
|
|
auto& logger = srslog::fetch_basic_logger("TEST", false);
|
|
ttcn3_ut_interface ut(logger);
|
|
ttcn3_sys_interface sys(logger);
|
|
ttcn3_ip_sock_interface ip_sock(logger);
|
|
ttcn3_ip_ctrl_interface ip_ctrl(logger);
|
|
ttcn3_srb_interface srb(logger);
|
|
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
srslog::init();
|
|
|
|
if_handler_test();
|
|
|
|
return SRSRAN_SUCCESS;
|
|
}
|