testdev/ite/test/com.nokia.testfw.launch.test/src/com/nokia/testfw/launch/AllPureJUnitTests.java
changeset 1 96906a986c3b
equal deleted inserted replaced
0:f1112f777ce9 1:96906a986c3b
       
     1 /*
       
     2  * Copyright (c) 2005-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 "Symbian Foundation License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:
       
    15  *
       
    16  */
       
    17 package com.nokia.testfw.launch;
       
    18 
       
    19 import com.nokia.testfw.launch.monitor.TailFileInputStreamTest;
       
    20 
       
    21 import junit.framework.Test;
       
    22 import junit.framework.TestSuite;
       
    23 
       
    24 /**
       
    25  * @author xiaoma
       
    26  * 
       
    27  */
       
    28 public class AllPureJUnitTests extends TestSuite {
       
    29 
       
    30 	public static Test suite() {
       
    31 		TestSuite suite = new TestSuite("com.nokia.testfw.launch.junit");
       
    32 		suite.addTestSuite(TailFileInputStreamTest.class);
       
    33 		return suite;
       
    34 	}
       
    35 
       
    36 }