org.elasticsearch.env.TestEnvironment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
Elasticsearch subproject :test:framework
The newest version!
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.env;
import org.elasticsearch.common.settings.Settings;
/**
* Provides a convenience method for tests to construct an Environment when the config path does not matter.
* This is in the test framework to force people who construct an Environment in production code to think
* about what the config path needs to be set to.
*/
public class TestEnvironment {
private TestEnvironment() {}
public static Environment newEnvironment(Settings settings) {
return new Environment(settings, null);
}
}