blob: b7ea011544e2d30a327463bbbad0cb78b23c4c5a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Progress Software
* 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:
* Oisin Hurley - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.jaxb.core.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
public class JAXBCoreTestSuite extends TestSuite {
public static Test suite() {
return new JAXBCoreTestSuite();
}
public JAXBCoreTestSuite() {
super("JAXB Core Tests");
addTestSuite(AddAnnotationToPackageTest.class);
addTestSuite(RemoveAnnotationFromPackageTest.class);
}
}