// XAAL toolkit // Copyright (C) 2009 Ville Karavirta // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . package tests; import junit.framework.Test; import junit.framework.TestSuite; import tests.xaal.objects.graphical.ColorConverterTest; import tests.xaal.objects.graphical.FontTest; import tests.xaal.objects.graphical.OffsetTest; import tests.xaal.objects.graphical.StyleTest; import tests.xaal.parser.modules.XaalAnimParserModuleTest; import tests.xaal.parser.modules.XaalDSAnimParserModuleTest; import tests.xaal.parser.modules.XaalDSParserModuleTest; import tests.xaal.parser.modules.XaalGPAnimParserModuleTest; import tests.xaal.parser.modules.XaalGPParserModuleTest; import tests.xaal.parser.modules.XaalMainParserModuleTest; import tests.xaal.parser.modules.XaalMetadataParserModuleTest; public class AllTests { public static Test suite() { TestSuite suite = new TestSuite("Test for xaal"); //$JUnit-BEGIN$ //Tests for xaal.parser.modules suite.addTestSuite(XaalGPParserModuleTest.class); suite.addTestSuite(XaalDSParserModuleTest.class); suite.addTestSuite(XaalMetadataParserModuleTest.class); suite.addTestSuite(XaalDSAnimParserModuleTest.class); suite.addTestSuite(XaalAnimParserModuleTest.class); suite.addTestSuite(XaalGPAnimParserModuleTest.class); suite.addTestSuite(XaalMainParserModuleTest.class); //Tests for xaal.objects.graphical suite.addTestSuite(StyleTest.class); suite.addTestSuite(ColorConverterTest.class); suite.addTestSuite(FontTest.class); suite.addTestSuite(OffsetTest.class); //$JUnit-END$ return suite; } }