
org.apache.royale.utils.ITestAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-test-utils Show documentation
Show all versions of compiler-test-utils Show documentation
Shared test code, which is needed by the compiler and the compiler-jx test-suites.
/*
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.royale.utils;
import java.io.File;
import java.util.List;
/**
* Created by christoferdutz on 23.02.16.
*/
public interface ITestAdapter {
String getTempDir();
List getLibraries(boolean withFlex);
File getPlayerglobal();
File getFlashplayerDebugger();
String getFlexManifestPath(String type);
File getFlexArtifact(String artifactName);
File getFlexArtifactResourceBundle(String artifactName);
String getRoyaleManifestPath(String type);
File getRoyaleArtifact(String artifactName);
File getUnitTestBaseDir();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy