connectivity/com.nokia.tcf.test/src/com/nokia/tcf/test/TestServerStartStop.java
changeset 59 c892c53c664e
equal deleted inserted replaced
44:e4eb00aa1a3f 59:c892c53c664e
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 package com.nokia.tcf.test;
       
    18 
       
    19 import com.nokia.tcf.impl.TCAPIConnection;
       
    20 
       
    21 import junit.framework.TestCase;
       
    22 
       
    23 public class TestServerStartStop extends TestCase {
       
    24 
       
    25 	public void testServerStartStop() {
       
    26 		// for non-plugin junit test
       
    27 		TCAPIConnection api2 = new TCAPIConnection();
       
    28 		api2.nativeStartServer();
       
    29 		
       
    30 		// for non-plugin junit test
       
    31 		api2.nativeStopServer();
       
    32 	}
       
    33 }