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

se.claremont.taf.mqsupport.Process Maven / Gradle / Ivy

There is a newer version: 3.0.11
Show newest version
package se.claremont.taf.mqsupport;

import com.ibm.mq.MQProcess;
import se.claremont.taf.core.testcase.TestCase;

public class Process {
    public MQProcess mqProcess;
    private TestCase testCase;

    public Process(TestCase testCase, MQProcess mqProcess) {
        this.testCase = testCase;
        this.mqProcess = mqProcess;
    }

    public TafProcessVerification verify(){
        return new TafProcessVerification(testCase, mqProcess);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy