org.testng.mustache.BaseChunk 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;
abstract public class BaseChunk {
protected Model m_model;
public BaseChunk(Model model) {
m_model = model;
}
protected void p(String string) {
if (false) {
System.out.println(string);
}
}
abstract String compose();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy