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

io.nosqlbench.driver.webdriver.side.Test Maven / Gradle / Ivy

Go to download

A nosqlbench driver module; Provides the ability to drive steps through the webdriver API.

There is a newer version: 4.15.102
Show newest version
package io.nosqlbench.driver.webdriver.side;

import java.util.List;

public class Test {
    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public List getCommands() {
        return commands;
    }

    public void setCommands(List commands) {
        this.commands = commands;
    }

    String id;
    String name;
    List commands;

    @Override
    public String toString() {
        return "Test{" +
            "id='" + id + '\'' +
            ", name='" + name + '\'' +
            ", commands=" + commands +
            '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy