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

wtf.emulator.EwWorkParameters Maven / Gradle / Ivy

Go to download

With this Gradle plugin you can run your Android instrumentation tests with emulator.wtf

There is a newer version: 0.17.0
Show newest version
package wtf.emulator;

import org.gradle.api.file.DirectoryProperty;
import org.gradle.api.file.RegularFileProperty;
import org.gradle.api.provider.ListProperty;
import org.gradle.api.provider.MapProperty;
import org.gradle.api.provider.Property;
import org.gradle.api.provider.SetProperty;
import org.gradle.workers.WorkParameters;

import java.io.File;
import java.util.Map;

public interface EwWorkParameters extends EwInvokeConfiguration, WorkParameters {
  Property getToken();

  RegularFileProperty getWorkingDir();

  SetProperty getClasspath();

  RegularFileProperty getAppApk();

  RegularFileProperty getTestApk();

  RegularFileProperty getLibraryTestApk();

  DirectoryProperty getOutputsDir();

  ListProperty> getDevices();

  MapProperty getEnvironmentVariables();

  RegularFileProperty getOutputFailureFile();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy