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

com.playtika.test.common.utils.ApkPackageInstaller Maven / Gradle / Ivy

package com.playtika.test.common.utils;

import com.playtika.test.common.properties.InstallPackageProperties;
import org.testcontainers.containers.GenericContainer;

public class ApkPackageInstaller extends PackageInstaller {

    public ApkPackageInstaller(InstallPackageProperties properties, GenericContainer container) {
        super(properties, container);
    }

    @Override
    protected void updatePackageList() {
        executeCommandAndCheckExitCode("apk", "update");
    }

    @Override
    protected void install(String packageToInstall) {
        executeCommandAndCheckExitCode("apk", "add", packageToInstall);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy