/core/src/test/java/com/google/code/twiddling/core/clp/handler/ObjectHandlerTest.java

http://twiddling.googlecode.com/ · Java · 73 lines · 37 code · 13 blank · 23 comment · 0 complexity · b70a05940d8512470c1ad07a90c9ded0 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package com.google.code.twiddling.core.clp.handler;
  20. import java.util.List;
  21. import junit.framework.Assert;
  22. import org.junit.After;
  23. import org.junit.Before;
  24. import org.junit.Test;
  25. import com.google.code.twiddling.core.clp.CommandLineParser;
  26. import com.google.code.twiddling.core.clp.Option;
  27. /**
  28. *
  29. * @author <a href="mailto:jeff.yuchang@gmail.com">Jeff Yu</a>
  30. *
  31. */
  32. public class ObjectHandlerTest extends Assert
  33. {
  34. TestBean bean;
  35. CommandLineParser clp;
  36. @Before
  37. public void setUp() throws Exception {
  38. bean = new TestBean();
  39. clp = new CommandLineParser(bean);
  40. assertEquals(1, clp.getOptionHandlers().size());
  41. assertEquals(0, clp.getArgumentHandlers().size());
  42. }
  43. @After
  44. public void tearDown() throws Exception {
  45. bean = null;
  46. clp = null;
  47. }
  48. @Test
  49. public void test1() throws Exception {
  50. clp.process("-1", "test");
  51. assertNotNull(bean.list);
  52. assertEquals(1, bean.list.size());
  53. assertEquals("test", bean.list.get(0));
  54. }
  55. public static class TestBean
  56. {
  57. @Option(name="-1")
  58. List<?> list;
  59. }
  60. }