wtf.emulator.data.CliOutputAsync Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin-core Show documentation
Show all versions of gradle-plugin-core Show documentation
With this Gradle plugin you can run your Android instrumentation tests with emulator.wtf
The newest version!
package wtf.emulator.data;
import com.google.auto.value.AutoValue;
import com.google.gson.Gson;
import com.google.gson.TypeAdapter;
@AutoValue public abstract class CliOutputAsync {
public abstract String runUuid();
public abstract String runToken();
public abstract String startTime();
public static Builder builder() {
return new AutoValue_CliOutputAsync.Builder();
}
@AutoValue.Builder
public abstract static class Builder {
public abstract Builder runUuid(String runUuid);
public abstract Builder runToken(String runToken);
public abstract Builder startTime(String startTime);
public abstract CliOutputAsync build();
}
public static TypeAdapter typeAdapter(Gson gson) {
return new AutoValue_CliOutputAsync.GsonTypeAdapter(gson);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy