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 output; try { output = GeoffreyUtil.parseArgs(testArgs); } catch (Exception e) { return; } System.out.println(output); } }