Hii... Is there any way to find out if the method call originated from a test class? If its from a test class... then I need to initialize some dummy values for the variables in the class . I would like to write the Test Class with minimal change in the source code... The class is following a singleton pattern..So its private constructor gets called which is calling some code which is blocking my testing. So I need to call my dummy methods from within in the private constructor so that it works smoothly..
Currently I am doing this...
StackTraceElement[] stack = new Throwable().getStackTrace();
boolean blnFrmTesting = false;
for (StackTraceElement stackTraceElement : stack) {
if(null != stackTraceElement && null != stackTraceElement.getFileName() && stackTraceElement.getFileName().endsWith("Test.java")) {
blnFrmTesting = true;
break;
}
}
return blnFrmTesting;
Is this a correct method...Or is there any other way.. like checking annotation...("@Test")