org.testng.mustache.Value Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.mustache;
public class Value {
private Object m_object;
public Value(Object object) {
m_object = object;
}
public Object get() {
return m_object;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy