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

okw.OKWTestBase Maven / Gradle / Ivy

Go to download

This is the core-module of OpenKeyWord. This module is automatically integrated by the adapters. In GUI automation, the core module is automatically integrated by the GUI modules (dependencies).

There is a newer version: 0.2.44
Show newest version
package okw;

import org.junit.jupiter.api.*;

public class OKWTestBase
{
    public String TestName;

    @BeforeEach
    void init(TestInfo testInfo)
    {
        TestName = testInfo.getTestMethod().get().getName();
    }
    public OKWTestBase()
    {

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy