I have a build set up via Maven that is using dnsjava to point the value of sun.net.spi.nameservice.provider.1 to my own implementation using Sun's NameService interface and dnsjava's DNSJavaNameService interface as an implementation. This works great when running TestNG tests via Surefire, changing the provider via configuration of the Surefire plugin.

This also works correctly in Eclipse when using the TestNG JVM preferences to pass arguments, as the system property can be set to point to the new provider.

What I'm wondering is if it's possible to do this in code by setting a system property instead. This works fine via a static initialization block in a class with a main method, but the property doesn't seem to take effect even when set via static initialization in a test class with TestNG (or JUnit for that matter). My suspicion is that the bootstrapping of those technologies or their associated Eclipse plugins is causing the setting to override the provider to not take effect, but I'm not sure why or how that's happening.

link|improve this question
For those interested, you can only do this via the plugin configuration; you can't intervene once the tests start. – theotherian Aug 20 '11 at 2:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.