blob: 172fd682f456cd5c4220a2aad1b4c555b0764c3d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 compeople AG 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:
* compeople AG (Stefan Liebig) - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.tests.sar;
import junit.framework.*;
/**
* Performs all sar tests.
*/
public class AllTests extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
suite.addTestSuite(DirectByteArrayOutputStreamTest.class);
suite.addTestSuite(SarTest.class);
suite.addTestSuite(SarEntryTest.class);
return suite;
}
}