1 package junitparams.internal.parameters; 2 3 interface ParametrizationStrategy { 4 Object[] getParameters(); 5 boolean isApplicable(); 6 } 7