When using HttpUnit and setting options via the HttpUnitOptions class, when are the options reset to their defaults?
Are they reset at the beginning of every test, the test suite, the test runner, or the lifetime of the JVM ?
As an example and for context if I set
HttpUnitOptions.setDefaultCharacterSet("utf-8");
at the start of a given test, should I reset it by calling
HttpUnitOptions.setDefaultCharacterSet()
at the end of the test, or is this redundant?