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

com.testvagrant.optimus.commons.filehandlers.ResourcePaths Maven / Gradle / Ivy

Go to download

Optimus Lite API to manage test devices and create appium driver based on platform

There is a newer version: 0.1.7-beta
Show newest version
package com.testvagrant.optimus.commons.filehandlers;

import com.testvagrant.optimus.commons.SystemProperties;

import java.nio.file.Paths;

public class ResourcePaths {

  public static final String SRC_ROOT = Paths.get(SystemProperties.USER_DIR, "src").toString();
  public static final String TEST_RESOURCES = Paths.get(SRC_ROOT, "test", "resources").toString();
  public static final String TEST_TEST_FEED_RESOURCES =
      Paths.get(TEST_RESOURCES, "testFeed").toString();
  public static final String MAIN_RESOURCES = Paths.get(SRC_ROOT, "main", "resources").toString();
  public static final String MAIN_TEST_FEED_RESOURCES =
      Paths.get(MAIN_RESOURCES, "testFeed").toString();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy