| /////////////////////////////////////////////////////////////////////////////// |
| // // |
| // Copyright (c) 2000-2019 Ericsson Telecom AB // |
| // // |
| // All rights reserved. This program and the accompanying materials // |
| // are made available under the terms of the Eclipse Public License v2.0 // |
| // which accompanies this distribution, and is available at // |
| // https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html // |
| /////////////////////////////////////////////////////////////////////////////// |
| |
| /////////////////////////////////////////////////////////// |
| // Module: EPTF_CLL_TimeProfileEditor |
| // |
| // Purpose: |
| // This TTCN-3 module is the main module of the EPTF Time Profile Editor |
| // |
| // Module depends on: |
| // <EPTF_CLL_TimeProfileEditor_Definitions> |
| // <EPTF_CLL_TimeProfileEditor_Functions> |
| // <EPTF_CLL_Base_Functions> |
| // |
| // Current Owner: |
| // Janos Zoltan Svaner (ejnosvn) |
| // |
| // Last Review Date: |
| // 2008-??-?? |
| // |
| // Detailed Comments: |
| // - |
| // |
| /////////////////////////////////////////////////////////// |
| |
| module EPTF_CLL_TimeProfileEditor |
| { |
| |
| //========================================================================= |
| // Import Part |
| //========================================================================= |
| |
| import from EPTF_CLL_TimeProfileEditor_Definitions all; |
| import from EPTF_CLL_TimeProfileEditor_Functions all; |
| import from EPTF_CLL_Base_Functions all; |
| |
| //========================================================================= |
| // Testcases |
| //========================================================================= |
| testcase tc_TimeProfileEditor() runs on MAIN_CT { |
| |
| f_EPTF_TimeProfileEditor_init_CT("TimeProfileEditor"); |
| f_EPTF_Base_wait4Shutdown(); |
| |
| setverdict(pass); |
| } |
| |
| //========================================================================= |
| // Control |
| //========================================================================= |
| control { |
| execute(tc_TimeProfileEditor()); |
| } |
| |
| } // end of module |