cli@12: /* cli@12: * SONEWS News Server cli@12: * see AUTHORS for the list of contributors cli@12: * cli@12: * This program is free software: you can redistribute it and/or modify cli@12: * it under the terms of the GNU General Public License as published by cli@12: * the Free Software Foundation, either version 3 of the License, or cli@12: * (at your option) any later version. cli@12: * cli@12: * This program is distributed in the hope that it will be useful, cli@12: * but WITHOUT ANY WARRANTY; without even the implied warranty of cli@12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the cli@12: * GNU General Public License for more details. cli@12: * cli@12: * You should have received a copy of the GNU General Public License cli@12: * along with this program. If not, see . cli@12: */ cli@12: cli@12: package test.unit; cli@12: cli@12: import junit.textui.TestRunner; cli@12: import test.util.mlgw.DispatcherTest; cli@12: cli@12: /** cli@12: * Unit tests for package org.sonews.mlgw. cli@12: * @author Christian Lins cli@12: * @since sonews/1.0.3 cli@12: */ cli@12: public class MLGWTests cli@12: { cli@12: cli@12: public static void main(String[] args) cli@12: { cli@12: System.out.println("DispatcherTest"); cli@12: TestRunner.run(DispatcherTest.class); cli@12: } cli@12: cli@12: }