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

com.epam.jdiuitests.implementation.testng.asserter.Check Maven / Gradle / Ivy

The newest version!
package com.epam.jdiuitests.implementation.testng.asserter;

import com.epam.jdiuitests.core.asserter.BaseChecker;
import com.epam.jdiuitests.core.utils.linqInterfaces.JActionT;
import org.testng.Assert;

/**
 * Created by Roman_Iovlev on 6/9/2015.
 */
public class Check extends BaseChecker {
    public Check() {
        super();
    }

    public Check(String checkMessage) {
        super(checkMessage);
    }

    @Override
    protected JActionT throwFail() {
        return Assert::fail;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy