1 /*2 * JBoss, Home of Professional Open Source3 * Copyright 2005, JBoss Inc., and individual contributors as indicated4 * by the @authors tag. See the copyright.txt in the distribution for a5 * full listing of individual contributors.6 *7 * This is free software; you can redistribute it and/or modify it8 * under the terms of the GNU Lesser General Public License as9 * published by the Free Software Foundation; either version 2.1 of10 * the License, or (at your option) any later version.11 *12 * This software is distributed in the hope that it will be useful,13 * but WITHOUT ANY WARRANTY; without even the implied warranty of14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU15 * Lesser General Public License for more details.16 *17 * You should have received a copy of the GNU Lesser General Public18 * License along with this software; if not, write to the Free19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.21 */22 package org.jboss.test.system.controller.configure.value;23 24 import org.jboss.test.system.controller.configure.value.depends.test.DependencyValueNewUnitTestCase;25 import org.jboss.test.system.controller.configure.value.depends.test.DependencyValueOldUnitTestCase;26 import org.jboss.test.system.controller.configure.value.dependslist.test.DependencyListValueNewUnitTestCase;27 import org.jboss.test.system.controller.configure.value.dependslist.test.DependencyListValueOldUnitTestCase;28 import org.jboss.test.system.controller.configure.value.element.test.ElementValueNewUnitTestCase;29 import org.jboss.test.system.controller.configure.value.element.test.ElementValueOldUnitTestCase;30 import org.jboss.test.system.controller.configure.value.inject.test.NewInjectionValueUnitTestCase;31 import org.jboss.test.system.controller.configure.value.javabean.test.JavaBeanValueNewUnitTestCase;32 import org.jboss.test.system.controller.configure.value.javabean.test.JavaBeanValueOldUnitTestCase;33 import org.jboss.test.system.controller.configure.value.jbxb.test.JBXBValueNewUnitTestCase;34 import org.jboss.test.system.controller.configure.value.jbxb.test.JBXBValueOldUnitTestCase;35 import org.jboss.test.system.controller.configure.value.text.test.TextValueNewUnitTestCase;36 import org.jboss.test.system.controller.configure.value.text.test.TextValueOldUnitTestCase;37 38 import junit.framework.Test;39 import junit.framework.TestSuite;40 import junit.textui.TestRunner;41 42 /**43 * Controller Configure Value Test Suite.44 * 45 * @author <a HREF="adrian@jboss.com">Adrian Brock</a>46 * @version $Revision: 1.8 $47 */48 public class ControllerConfigureValueTestSuite extends TestSuite49 {50 public static void main(String [] args)51 {52 TestRunner.run(suite());53 }54 55 public static Test suite()56 {57 TestSuite suite = new TestSuite("Controller Configure Value Tests");58 59 suite.addTest(TextValueOldUnitTestCase.suite());60 suite.addTest(TextValueNewUnitTestCase.suite());61 suite.addTest(DependencyValueOldUnitTestCase.suite());62 suite.addTest(DependencyValueNewUnitTestCase.suite());63 suite.addTest(DependencyListValueOldUnitTestCase.suite());64 suite.addTest(DependencyListValueNewUnitTestCase.suite());65 suite.addTest(ElementValueOldUnitTestCase.suite());66 suite.addTest(ElementValueNewUnitTestCase.suite());67 suite.addTest(JavaBeanValueOldUnitTestCase.suite());68 suite.addTest(JavaBeanValueNewUnitTestCase.suite());69 suite.addTest(JBXBValueOldUnitTestCase.suite());70 suite.addTest(JBXBValueNewUnitTestCase.suite());71 suite.addTest(NewInjectionValueUnitTestCase.suite());72 73 return suite;74 }75 }76