acoliver    2002/07/28 15:47:58

  Modified:    src/testcases/org/apache/poi/util TestStringUtil.java
  Log:
  Backing out this code it causes 
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10393
  
  Revision  Changes    Path
  1.4       +0 -43     
jakarta-poi/src/testcases/org/apache/poi/util/TestStringUtil.java
  
  Index: TestStringUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/testcases/org/apache/poi/util/TestStringUtil.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestStringUtil.java       21 Jul 2002 03:03:57 -0000      1.3
  +++ TestStringUtil.java       28 Jul 2002 22:47:58 -0000      1.4
  @@ -64,7 +64,6 @@
    *
    * @author  Marc Johnson (mjohnson at apache dot org
    * @author  Glen Stampoultzis (glens at apache.org)
  - * @author  Sergei Kozello (sergeikozello at mail.ru)
    */
   
   public class TestStringUtil
  @@ -98,48 +97,6 @@
           }
           assertEquals("abcdefghijklmnop",
                        StringUtil.getFromUnicode(test_data));
  -    }
  -
  -    /**
  -     * test simple form of getFromUnicode with symbols with code below and more 127
  -     */
  -
  -    public void testGetFromUnicodeSymbolsWithCodesMoreThan127()
  -    {
  -        byte[] test_data = new byte[] {      0x04, 0x22,
  -                                                                     0x04, 0x35,
  -                                                                     0x04, 0x41,
  -                                                                     0x04, 0x42,
  -                                                                     0x00, 0x20,
  -                                                                     0x00, 0x74,
  -                                                                     0x00, 0x65,
  -                                                                     0x00, 0x73,
  -                                                                     0x00, 0x74,
  -                                                                     };
  -
  -        assertEquals("\u0422\u0435\u0441\u0442 test",
  -                     StringUtil.getFromUnicode(test_data));
  -    }
  -
  -    /**
  -     * test getFromUnicodeHigh for symbols with code below and more 127
  -     */
  -
  -    public void testGetFromUnicodeHighSymbolsWithCodesMoreThan127()
  -    {
  -        byte[] test_data = new byte[] {      0x22, 0x04,
  -                                                                     0x35, 0x04,
  -                                                                     0x41, 0x04,
  -                                                                     0x42, 0x04,
  -                                                                     0x20, 0x00,
  -                                                                     0x74, 0x00,
  -                                                                     0x65, 0x00,
  -                                                                     0x73, 0x00,
  -                                                                     0x74, 0x00,
  -                                                                     };
  -
  -        assertEquals("\u0422\u0435\u0441\u0442 test",
  -                     StringUtil.getFromUnicodeHigh( test_data ) );
       }
   
       /**
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to