reset static method

void reset()

Reset the singleton — useful for testing with different library paths.

Implementation

static void reset() {
  _instance = null;
  _configuredPath = null;
  _resolvedPath = null;
}