Home
last modified time | relevance | path

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

/external/junit-params/src/main/java/junitparams/custom/combined/
DCartesian.java37 private static Object getCartesianOfTwoElements(Object objectOne, Object objectTwo) { in getCartesianOfTwoElements() argument
38 if (!objectOne.getClass().isArray()) { in getCartesianOfTwoElements()
39 return new Object[]{objectOne, objectTwo}; in getCartesianOfTwoElements()
41 Object[] initialArray = (Object[]) objectOne; in getCartesianOfTwoElements()