From f2dcb0cbc31b75fd6cf05270d88d0ff51d2de7ad Mon Sep 17 00:00:00 2001 From: dchandler Date: Sat, 22 Mar 2003 03:58:13 +0000 Subject: [PATCH] I said I removed this earlier; I lied. Now it's gone. --- source/org/thdl/tib/text/tshegbar/test.java | 50 --------------------- 1 file changed, 50 deletions(-) delete mode 100644 source/org/thdl/tib/text/tshegbar/test.java diff --git a/source/org/thdl/tib/text/tshegbar/test.java b/source/org/thdl/tib/text/tshegbar/test.java deleted file mode 100644 index 3924adf..0000000 --- a/source/org/thdl/tib/text/tshegbar/test.java +++ /dev/null @@ -1,50 +0,0 @@ -/* -The contents of this file are subject to the THDL Open Community License -Version 1.0 (the "License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License on the THDL web site -(http://www.thdl.org/). - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific terms governing rights and limitations under the -License. - -The Initial Developer of this software is the Tibetan and Himalayan Digital -Library (THDL). Portions created by the THDL are Copyright 2001 THDL. -All Rights Reserved. - -Contributor(s): ______________________________________. -*/ - -package org.thdl.tib.text.tshegbar; - -import org.thdl.util.ThdlDebug; -import org.thdl.util.ThdlLazyException; - -/** DLC FIXMEDOC and turn into junit tests. - * - * @author David Chandler - */ -public class test implements UnicodeConstants { - /** tests this package */ - public test() throws Throwable { - super(); - - } - - /** Unit tests this package. */ - public static void main(String argv[]) { - try { - System.out.println("yo"); - new test(); - } catch (ThdlLazyException ex) { - System.out.println("Oopsy!"); - ex.getRealException().printStackTrace(); - } catch (Throwable t) { - System.out.println("Oops!"); - System.out.println(t); - System.out.println("at:"); - t.printStackTrace(); - } - } -}