| /////////////////////////////////////////////////////////////////////////////// |
| // // |
| // 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_NameService_Test_Definitions |
| // |
| // Purpose: |
| // This module contains the type definitions of generic EPTF NameService. |
| // |
| // Module depends on: |
| // <EPTF_CLL_NameService_Definitions> |
| // <EPTF_CLL_Base_Definitions> |
| // |
| // Current Owner: |
| // Balazs Barcsik (EBALBAR) |
| // |
| // Last Review Date: |
| // 2007-xx-xx |
| // |
| // Detailed Comments: |
| // - |
| // |
| /////////////////////////////////////////////////////////////// |
| module EPTF_NameService_Test_Definitions { |
| //========================================================================= |
| // Import Part |
| //========================================================================= |
| import from EPTF_CLL_NameService_Definitions all; |
| import from EPTF_CLL_Base_Definitions all; |
| |
| //========================================================================= |
| // Component type |
| //========================================================================= |
| type component EPTF_NS_Client_Test extends EPTF_NS_Client_CT { |
| timer t_wait := 0.5; |
| } |
| type component MyCT extends MyCT2, EPTF_NS_Client_CT { |
| } |
| |
| type component MyCT2 extends EPTF_Base_CT { |
| } |
| |
| type component MyCT3 extends EPTF_Base_CT, MyCT4 { |
| } |
| |
| type component MyCT4 extends EPTF_NS_Client_CT { |
| } |
| |
| } |