Geoffrey-MC-Plugin/src/test/java/com/zerohighdef/geoffrey/Objects/GeoffreyUtilTest.java

24 lines
490 B
Java

package com.zerohighdef.geoffrey.Objects;
import org.junit.runner.RunWith;
import java.util.List;
import static org.junit.Assert.*;
public class GeoffreyUtilTest {
@org.junit.Test
public void parseArgs() {
String testArgs []= {"\"this", "is", "a", "test"};
List<String> output;
try {
output = GeoffreyUtil.parseArgs(testArgs);
}
catch (Exception e) {
return;
}
System.out.println(output);
}
}