com.github.searls.jasmine.NullLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasmine-maven-plugin Show documentation
Show all versions of jasmine-maven-plugin Show documentation
A JavaScript unit test plugin that processes JavaScript sources and Jasmine specs, prepares test runner HTML files, executes Jasmine specs headlessly with HtmlUnit, and produces JUnit XML reports
package com.github.searls.jasmine;
public class NullLog implements org.apache.maven.plugin.logging.Log {
@Override
public boolean isDebugEnabled() {
return false;
}
@Override
public void debug(CharSequence content) {
}
@Override
public void debug(CharSequence content, Throwable error) {
}
@Override
public void debug(Throwable error) {
}
@Override
public boolean isInfoEnabled() {
return false;
}
@Override
public void info(CharSequence content) {
}
@Override
public void info(CharSequence content, Throwable error) {
}
@Override
public void info(Throwable error) {
}
@Override
public boolean isWarnEnabled() {
return false;
}
@Override
public void warn(CharSequence content) {
}
@Override
public void warn(CharSequence content, Throwable error) {
}
@Override
public void warn(Throwable error) {
}
@Override
public boolean isErrorEnabled() {
return false;
}
@Override
public void error(CharSequence content) {
}
@Override
public void error(CharSequence content, Throwable error) {
}
@Override
public void error(Throwable error) {
}
}