Search in sources :

Example 6 with BeforeSuite

use of org.testng.annotations.BeforeSuite in project midpoint by Evolveum.

the class TestPolyString method setupDebug.

@BeforeSuite
public void setupDebug() throws SchemaException, SAXException, IOException {
    PrettyPrinter.setDefaultNamespacePrefix(DEFAULT_NAMESPACE_PREFIX);
    PrismTestUtil.resetPrismContext(new PrismInternalTestUtil());
}
Also used : PrismInternalTestUtil(com.evolveum.midpoint.prism.PrismInternalTestUtil) BeforeSuite(org.testng.annotations.BeforeSuite)

Example 7 with BeforeSuite

use of org.testng.annotations.BeforeSuite in project midpoint by Evolveum.

the class TestFundamentals method setupDebug.

@BeforeSuite
public void setupDebug() throws SchemaException, SAXException, IOException {
    PrettyPrinter.setDefaultNamespacePrefix(DEFAULT_NAMESPACE_PREFIX);
    PrismTestUtil.resetPrismContext(new PrismInternalTestUtil());
}
Also used : PrismInternalTestUtil(com.evolveum.midpoint.prism.PrismInternalTestUtil) BeforeSuite(org.testng.annotations.BeforeSuite)

Example 8 with BeforeSuite

use of org.testng.annotations.BeforeSuite in project midpoint by Evolveum.

the class TestCompare method setupDebug.

@BeforeSuite
public void setupDebug() throws SchemaException, SAXException, IOException {
    PrettyPrinter.setDefaultNamespacePrefix(DEFAULT_NAMESPACE_PREFIX);
    PrismTestUtil.resetPrismContext(new PrismInternalTestUtil());
}
Also used : PrismInternalTestUtil(com.evolveum.midpoint.prism.PrismInternalTestUtil) BeforeSuite(org.testng.annotations.BeforeSuite)

Example 9 with BeforeSuite

use of org.testng.annotations.BeforeSuite in project oxAuth by GluuFederation.

the class BaseTest method initTestSuite.

@BeforeSuite
public void initTestSuite(ITestContext context) throws FileNotFoundException, IOException {
    SecurityProviderUtility.installBCProvider();
    Reporter.log("Invoked init test suite method \n", true);
    String propertiesFile = context.getCurrentXmlTest().getParameter("propertiesFile");
    if (StringHelper.isEmpty(propertiesFile)) {
        propertiesFile = "target/test-classes/testng.properties";
    //propertiesFile = "U:\\own\\project\\git\\oxAuth\\Client\\src\\test\\resources\\testng_yuriy.properties";
    //propertiesFile = "/Users/JAVIER/IdeaProjects/oxAuth/Client/target/test-classes/testng.properties";
    }
    FileInputStream conf = new FileInputStream(propertiesFile);
    Properties prop = new Properties();
    prop.load(conf);
    Map<String, String> parameters = new HashMap<String, String>();
    for (Entry<Object, Object> entry : prop.entrySet()) {
        Object key = entry.getKey();
        Object value = entry.getValue();
        if (StringHelper.isEmptyString(key) || StringHelper.isEmptyString(value)) {
            continue;
        }
        parameters.put(key.toString(), value.toString());
    }
    // Overrided test paramters
    context.getSuite().getXmlSuite().setParameters(parameters);
}
Also used : HashMap(java.util.HashMap) Properties(java.util.Properties) FileInputStream(java.io.FileInputStream) BeforeSuite(org.testng.annotations.BeforeSuite)

Example 10 with BeforeSuite

use of org.testng.annotations.BeforeSuite in project gatk-protected by broadinstitute.

the class GermlineCNVCallerIntegrationTest method init.

@BeforeSuite
public void init() throws IOException {
    LEARNING_SEX_GENOTYPES_DATA = new SexGenotypeDataCollection(TEST_LEARNING_SAMPLE_SEX_GENOTYPES_FILE);
    CALLING_SEX_GENOTYPES_DATA = new SexGenotypeDataCollection(TEST_CALLING_SAMPLE_SEX_GENOTYPES_FILE);
    GERMLINE_PLOIDY_ANNOTATIONS = new GermlinePloidyAnnotatedTargetCollection(ContigGermlinePloidyAnnotationTableReader.readContigGermlinePloidyAnnotationsFromFile(TEST_CONTIG_PLOIDY_ANNOTATIONS_FILE), TargetTableReader.readTargetFile(TEST_TARGETS_FILE));
}
Also used : SexGenotypeDataCollection(org.broadinstitute.hellbender.tools.exome.sexgenotyper.SexGenotypeDataCollection) GermlinePloidyAnnotatedTargetCollection(org.broadinstitute.hellbender.tools.exome.sexgenotyper.GermlinePloidyAnnotatedTargetCollection) BeforeSuite(org.testng.annotations.BeforeSuite)

Aggregations

BeforeSuite (org.testng.annotations.BeforeSuite)65 PrismInternalTestUtil (com.evolveum.midpoint.prism.PrismInternalTestUtil)12 HashMap (java.util.HashMap)12 File (java.io.File)11 WebDriverWait (org.openqa.selenium.support.ui.WebDriverWait)6 FileInputStream (java.io.FileInputStream)5 Properties (java.util.Properties)5 ChromeDriver (org.openqa.selenium.chrome.ChromeDriver)5 DesiredCapabilities (org.openqa.selenium.remote.DesiredCapabilities)5 ZNRecordSerializer (org.apache.helix.manager.zk.ZNRecordSerializer)4 ZkClient (org.apache.helix.manager.zk.ZkClient)4 ChromeOptions (org.openqa.selenium.chrome.ChromeOptions)4 Actions (org.openqa.selenium.interactions.Actions)4 IOException (java.io.IOException)3 ArrayList (java.util.ArrayList)3 Random (java.util.Random)3 SubscriptionManagerTasks (rhsm.cli.tasks.SubscriptionManagerTasks)3 SSHCommandResult (com.redhat.qe.tools.SSHCommandResult)2 CloudbreakClient (com.sequenceiq.cloudbreak.client.CloudbreakClient)2 InputStream (java.io.InputStream)2