blob: d27a40426f44186ac0a90d9019d052bbf93c930c [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// mmacivor - January 09, 2009 - 1.1 - Initial implementation
package org.eclipse.persistence.testing.oxm.mappings.containeraccessor;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class ContainerAccessorTestSuite extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite("ContainerAcessorTestSuite");
suite.addTestSuite(ContainerInstanceVariableAccessorTestCases.class);
suite.addTestSuite(ContainerMethodAccessorTestCases.class);
suite.addTestSuite(ContainerInvalidAttributeTestCases.class);
return suite;
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.oxm.mappings.containeracessor.ContainerAccessorTestSuite" };
junit.textui.TestRunner.main(arguments);
}
}