/tst/org/diffkit/common/tst/TestConstructor.groovy

http://diffkit.googlecode.com/ · Groovy · 42 lines · 17 code · 7 blank · 18 comment · 3 complexity · c36a8c045863236682f84a6ea4bc8418 MD5 · raw file

  1. /**
  2. * Copyright 2010-2011 Joseph Panico
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.diffkit.common.tst
  17. import org.diffkit.common.DKCalendarSpan;
  18. import org.diffkit.common.DKConstructor
  19. import groovy.util.GroovyTestCase;
  20. import java.lang.reflect.Constructor
  21. /**
  22. * @author jpanico
  23. */
  24. public class TestConstructor extends GroovyTestCase {
  25. public void testFindParameterNames(){
  26. Constructor constructor = DKCalendarSpan.class.getConstructors()[0]
  27. assert constructor
  28. DKConstructor dkConstructor = [constructor]
  29. println "dkConstructor->$dkConstructor"
  30. assert dkConstructor._parameterNames
  31. assert dkConstructor._parameterNames.length == 2
  32. assert dkConstructor._parameterNames[0] == "quantity_"
  33. assert dkConstructor._parameterNames[1] == "unit_"
  34. }
  35. }