blob: bb68040c25825b3efdb652eac55124b6a9e40050 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Wind River Systems, Inc. and others. All rights reserved.
* This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.tcf.te.tests.tcf.filesystem.callbacks;
import junit.framework.Test;
import junit.framework.TestSuite;
public class CallbackTests {
public static Test suite() {
TestSuite suite = new TestSuite("File System: Callback Tests"); //$NON-NLS-1$
suite.addTestSuite(QueryChildrenCallbackTest.class);
return suite;
}
}