My java application references a 3rd-party jar file which uses log4j logging. The problem is that this jar contains its own log4j.properties file which causes access denied exceptions on my machine, b
I know you\'re supposed to only load log4j properties once, so what is standard practice when you\'re doing unit tests? Should I load it in every unit test file? Should I put it in jUnit\'s setUp() 开