当前位置: 首页>>代码示例>>Java>>正文


Java TooManyArgumentsException类代码示例

本文整理汇总了Java中org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException的典型用法代码示例。如果您正苦于以下问题:Java TooManyArgumentsException类的具体用法?Java TooManyArgumentsException怎么用?Java TooManyArgumentsException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


TooManyArgumentsException类属于org.apache.hadoop.fs.shell.CommandFormat包,在下文中一共展示了TooManyArgumentsException类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testOneArg

import org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException; //导入依赖的package包/类
@Test
public void testOneArg() {
  args = listOf("a");
  expectedArgs = listOf("a");

  checkArgLimits(TooManyArgumentsException.class, 0, 0);
  checkArgLimits(null, 0, 1);    
  checkArgLimits(null, 1, 1);
  checkArgLimits(null, 1, 2);
  checkArgLimits(NotEnoughArgumentsException.class, 2, 3);
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:12,代码来源:TestCommandFormat.java

示例2: testTwoArgs

import org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException; //导入依赖的package包/类
@Test
public void testTwoArgs() {
  args = listOf("a", "b");
  expectedArgs = listOf("a", "b");

  checkArgLimits(TooManyArgumentsException.class, 0, 0);
  checkArgLimits(TooManyArgumentsException.class, 1, 1);
  checkArgLimits(null, 1, 2);
  checkArgLimits(null, 2, 2);
  checkArgLimits(null, 2, 3);
  checkArgLimits(NotEnoughArgumentsException.class, 3, 3);
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:13,代码来源:TestCommandFormat.java

示例3: testOptArg

import org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException; //导入依赖的package包/类
@Test
public void testOptArg() {
  args = listOf("-a", "b");
  expectedOpts = setOf("a");
  expectedArgs = listOf("b");

  checkArgLimits(UnknownOptionException.class, 0, 0);
  checkArgLimits(TooManyArgumentsException.class, 0, 0, "a", "b");
  checkArgLimits(null, 0, 1, "a", "b");
  checkArgLimits(null, 1, 1, "a", "b");
  checkArgLimits(null, 1, 2, "a", "b");
  checkArgLimits(NotEnoughArgumentsException.class, 2, 2, "a", "b");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:14,代码来源:TestCommandFormat.java

示例4: testArgOpt

import org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException; //导入依赖的package包/类
@Test
public void testArgOpt() {
  args = listOf("b", "-a");
  expectedArgs = listOf("b", "-a");

  checkArgLimits(TooManyArgumentsException.class, 0, 0, "a", "b");
  checkArgLimits(null, 1, 2, "a", "b");
  checkArgLimits(null, 2, 2, "a", "b");
  checkArgLimits(NotEnoughArgumentsException.class, 3, 4, "a", "b");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:11,代码来源:TestCommandFormat.java

示例5: testOptStopOptArg

import org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException; //导入依赖的package包/类
@Test
public void testOptStopOptArg() {
  args = listOf("-a", "--", "-b", "c");
  expectedOpts = setOf("a");
  expectedArgs = listOf("-b", "c");

  checkArgLimits(UnknownOptionException.class, 0, 0);
  checkArgLimits(TooManyArgumentsException.class, 0, 1, "a", "b");
  checkArgLimits(null, 2, 2, "a", "b");
  checkArgLimits(NotEnoughArgumentsException.class, 3, 4, "a", "b");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:12,代码来源:TestCommandFormat.java

示例6: testOptDashArg

import org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException; //导入依赖的package包/类
@Test
public void testOptDashArg() {
  args = listOf("-b", "-", "-c");
  expectedOpts = setOf("b");
  expectedArgs = listOf("-", "-c");

  checkArgLimits(UnknownOptionException.class, 0, 0);
  checkArgLimits(TooManyArgumentsException.class, 0, 0, "b", "c");
  checkArgLimits(TooManyArgumentsException.class, 1, 1, "b", "c");
  checkArgLimits(null, 2, 2, "b", "c");
  checkArgLimits(NotEnoughArgumentsException.class, 3, 4, "b", "c");
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:13,代码来源:TestCommandFormat.java


注:本文中的org.apache.hadoop.fs.shell.CommandFormat.TooManyArgumentsException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。