Home
last modified time | relevance | path

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

/external/junit-params/src/test/java/junitparams/custom/combined/
DCombinedParametersProviderTest.java39 void called(String firstParam, String anotherParam){ in called() argument
40 calls.add(new Call(firstParam, anotherParam)); in called()
50 private final String anotherParam; field in CombinedParametersProviderTest.Verifier.Call
52 Call(String firstParam, String anotherParam) { in Call() argument
54 this.anotherParam = anotherParam; in Call()
61 ",'" + anotherParam + '\'' + in toString()
76 return firstParam.equals(call.firstParam) && anotherParam.equals(call.anotherParam); in equals()
83 result = 31 * result + anotherParam.hashCode(); in hashCode()