author | cli |
Sun, 29 Aug 2010 17:43:58 +0200 | |
changeset 36 | c404a87db5b7 |
parent 12 | bb6990c0dd1a |
permissions | -rw-r--r-- |
cli@12 | 1 |
/* |
cli@12 | 2 |
* SONEWS News Server |
cli@12 | 3 |
* see AUTHORS for the list of contributors |
cli@12 | 4 |
* |
cli@12 | 5 |
* This program is free software: you can redistribute it and/or modify |
cli@12 | 6 |
* it under the terms of the GNU General Public License as published by |
cli@12 | 7 |
* the Free Software Foundation, either version 3 of the License, or |
cli@12 | 8 |
* (at your option) any later version. |
cli@12 | 9 |
* |
cli@12 | 10 |
* This program is distributed in the hope that it will be useful, |
cli@12 | 11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
cli@12 | 12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
cli@12 | 13 |
* GNU General Public License for more details. |
cli@12 | 14 |
* |
cli@12 | 15 |
* You should have received a copy of the GNU General Public License |
cli@12 | 16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
cli@12 | 17 |
*/ |
cli@12 | 18 |
|
cli@12 | 19 |
package test.unit; |
cli@12 | 20 |
|
cli@12 | 21 |
import junit.textui.TestRunner; |
cli@12 | 22 |
import test.util.mlgw.DispatcherTest; |
cli@12 | 23 |
|
cli@12 | 24 |
/** |
cli@12 | 25 |
* Unit tests for package org.sonews.mlgw. |
cli@12 | 26 |
* @author Christian Lins |
cli@12 | 27 |
* @since sonews/1.0.3 |
cli@12 | 28 |
*/ |
cli@12 | 29 |
public class MLGWTests |
cli@12 | 30 |
{ |
cli@12 | 31 |
|
cli@12 | 32 |
public static void main(String[] args) |
cli@12 | 33 |
{ |
cli@12 | 34 |
System.out.println("DispatcherTest"); |
cli@12 | 35 |
TestRunner.run(DispatcherTest.class); |
cli@12 | 36 |
} |
cli@12 | 37 |
|
cli@12 | 38 |
} |