I want to create one test class to test static method in below class.
public class Drill{
void doSomething(){
drillStatic(con, prop, inp,fileName);
}
drillStatic(Connection con, Properties prop, String inp, String, fileName){
//did something
}
}
May I know please how can I do it using PowerMock, Because I think Mock can't test static methods..!
I'm creating first time..!
Thanks