aboutsummaryrefslogtreecommitdiffstats
path: root/src/testcases/org/apache/poi/util
diff options
context:
space:
mode:
authorAndrew C. Oliver <acoliver@apache.org>2002-07-28 22:47:58 +0000
committerAndrew C. Oliver <acoliver@apache.org>2002-07-28 22:47:58 +0000
commit1f1b91f95f64ab275913cc1072a70cb5e98debc6 (patch)
tree05c53de15ebdecdaf4647a9782e54baf46d3bc7a /src/testcases/org/apache/poi/util
parent494ee6f97582acc0fd7b356042b49c0c8787f7d6 (diff)
downloadpoi-1f1b91f95f64ab275913cc1072a70cb5e98debc6.tar.gz
poi-1f1b91f95f64ab275913cc1072a70cb5e98debc6.zip
Backing out this code it causes http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10393
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352812 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases/org/apache/poi/util')
-rw-r--r--src/testcases/org/apache/poi/util/TestStringUtil.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/testcases/org/apache/poi/util/TestStringUtil.java b/src/testcases/org/apache/poi/util/TestStringUtil.java
index af082dffff..c80bce4320 100644
--- a/src/testcases/org/apache/poi/util/TestStringUtil.java
+++ b/src/testcases/org/apache/poi/util/TestStringUtil.java
@@ -64,7 +64,6 @@ import java.text.NumberFormat;
*
* @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
@@ -101,48 +100,6 @@ public class TestStringUtil
}
/**
- * 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 ) );
- }
-
- /**
* Test more complex form of getFromUnicode
*/