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

com.github.searls.jasmine.NullLog Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.1.2
Show newest version
package com.github.searls.jasmine;

public class NullLog implements org.apache.maven.plugin.logging.Log {

	public boolean isDebugEnabled() {
		return false;
	}

	public void debug(CharSequence content) {}

	public void debug(CharSequence content, Throwable error) {}

	public void debug(Throwable error) {}

	public boolean isInfoEnabled() {
		return false;
	}

	public void info(CharSequence content) {}

	public void info(CharSequence content, Throwable error) {}

	public void info(Throwable error) {}

	public boolean isWarnEnabled() {
		return false;
	}

	public void warn(CharSequence content) {}

	public void warn(CharSequence content, Throwable error) {}

	public void warn(Throwable error) {}

	public boolean isErrorEnabled() {
		return false;
	}

	public void error(CharSequence content) {}

	public void error(CharSequence content, Throwable error) {}

	public void error(Throwable error) {}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy