Package test

Source Code of test.QuotedMainTest

package test;

import java.util.ArrayList;
import java.util.List;

import org.testng.Assert;
import org.testng.annotations.Test;

import com.beust.jcommander.JCommander;
import com.beust.jcommander.Parameter;

public class QuotedMainTest {
  @Parameter
  List<String> args = new ArrayList<String>();
 
  String quoted = "\" \"";

  @Test
  public void testMain() {
    JCommander jc = new JCommander(this);
    jc.parse(quoted);
    Assert.assertEquals(args.size(), 1);
    Assert.assertEquals(args.get(0), " ");
  }
 
  public static void main(String[] args) {
    new QuotedMainTest().testMain();
  }
}
TOP

Related Classes of test.QuotedMainTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.