use of org.mule.tck.probe.file.FileExists in project mule by mulesoft.
the class AbstractDeploymentTestCase method assetArtifactFolderIsMaintained.
private void assetArtifactFolderIsMaintained(String artifactName, File artifactDir) {
Prober prober = new PollingProber(DEPLOYMENT_TIMEOUT, 100);
File appFolder = new File(artifactDir, artifactName);
prober.check(new FileExists(appFolder));
}
use of org.mule.tck.probe.file.FileExists in project mule by mulesoft.
the class DeploymentTestUtils method assertFileExists.
public static void assertFileExists(File pluginsDir, String filePath) {
Prober prober = new PollingProber(5000, 100);
File marker = new File(pluginsDir, filePath);
prober.check(new FileExists(marker));
}
Aggregations