ICU-13245 moves code from tests to samples.

X-SVN-Rev: 40172
This commit is contained in:
Norbert Runge 2017-06-16 22:10:50 +00:00
parent 4f2edcbb8f
commit 56aba62a32

View File

@ -7,10 +7,7 @@
*******************************************************************************
*/
package com.ibm.icu.dev.test.shaping;
import org.junit.Ignore;
import org.junit.Test;
package com.ibm.icu.samples.shaping;
import com.ibm.icu.text.ArabicShaping;
import com.ibm.icu.text.ArabicShapingException;
@ -19,18 +16,11 @@ import com.ibm.icu.text.ArabicShapingException;
* Interactive test for Arabic shaping.
* Invoke from a command line passing args and strings. Use '-help' to see description of arguments.
*/
// TODO(junit): wasn't running before - needs to be fixed
public class ArabicShapingTest{
public class ArabicShapingSample{
private static final int COPY = 0;
private static final int INPLACE = 1;
private static final int STRING = 2;
// TODO(junit): marked with a test to keep from failing during ant run
@Ignore
@Test
public void dummyTest() {
}
public static final void main(String[] args) {
int testtype = COPY;
int options = 0;