All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fm.last.commons.test.extensions.RootDataFolderExtension Maven / Gradle / Ivy

There is a newer version: 7.0.2
Show newest version
package fm.last.commons.test.extensions;

import java.io.File;

import org.junit.jupiter.api.extension.Extension;

import fm.last.commons.test.core.DataFolderUtils;

class RootDataFolderExtension extends BaseDataFolder implements Extension {

  private File folder;

  public RootDataFolderExtension() {
    this(new String[] {});
  }

  public RootDataFolderExtension(String... children) {
    folder = DataFolderUtils.buildRootDataFolder(children);
  }

  @Override
  public File getDataFolder() {
    return folder;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy