Stub Latin file: just imports the Interlingua translation, which is like Latin with...
[mediawiki.git] / testsuite / src / com / piclab / wikitest / Test.template
blob1b9c1f268f764e58a3eb5962e8c9cee9d6835186
2 /*
3  * Template for adding new tests.
4  */
6 package com.piclab.wikitest;
7 import com.meterware.httpunit.*;
9 public class FooTest extends WikiTest {
11 public String testName() { return "Foo"; }
13 protected int initTest() throws Exception {
14         m_suite.logout();
15         return 0;
18 protected int runTest() throws Exception {
19         int c = 0;
21         if ( 0 != ( c = part1() ) ) { return fail( c ); }
22         if ( 0 != ( c = part2() ) ) { return fail( c ); }
23         return 0;
26 private int part1() throws Exception {
27         return 0;
30 private int part2() throws Exception {
31         return 0;
34 public static void main( String[] params ) {
35         (new FooTest()).runSingle( params );