Set system property for a new thread

148 Views Asked by At

I have a piece of application code which retrieves a system property to get log path. This piece of code is executed by a batch job.

I have written a test case using JobLauncherTestUtils class to launch this job. How can i mock the system property. When i plainly set system property using a static block or using @Before, system property value is not available when job is invoked as job is launched in a new thread. How can i pass the system property value to the job invoked through JobLauncherTestUtils

0

There are 0 best solutions below