Home
last modified time | relevance | path

Searched refs:typesOfParameters (Results 1 – 1 of 1) sorted by relevance

/external/junit-params/src/main/java/junitparams/internal/
DInvokeParameterisedMethod.java61 Class<?>[] typesOfParameters = createArrayOfTypesOf(paramset); in castParamsFromObjects()
62 … Object resultParam = createObjectOfExpectedTypeBasedOnParams(paramset, typesOfParameters); in castParamsFromObjects()
67 …e Object createObjectOfExpectedTypeBasedOnParams(Object[] paramset, Class<?>[] typesOfParameters) { in createObjectOfExpectedTypeBasedOnParams() argument
72 resultParam = Array.newInstance(typesOfParameters[0], paramset.length); in createObjectOfExpectedTypeBasedOnParams()
77 …aram = testMethod.getMethod().getParameterTypes()[0].getConstructor(typesOfParameters).newInstance… in createObjectOfExpectedTypeBasedOnParams()