blob: b3ca93ec03ebcfdc2461ba4fef77daca92062b0d [file] [log] [blame]
package com.gemstone.gemfire.test.golden;
import org.junit.experimental.categories.Category;
import com.gemstone.gemfire.LogWriter;
import com.gemstone.gemfire.internal.logging.LocalLogWriter;
import com.gemstone.gemfire.internal.logging.LogWriterImpl;
import com.gemstone.gemfire.test.junit.categories.UnitTest;
/**
* Verifies that test output containing an unexpected error message
* will fail with that error message as the failure message.
*
* @author Kirk Lund
*/
@Category(UnitTest.class)
public class FailWithErrorInOutputJUnitTest extends FailWithProblemInOutputTestCase {
public FailWithErrorInOutputJUnitTest() {
super(FailWithErrorInOutputJUnitTest.class.getSimpleName());
}
@Override
String problem() {
return "ExpectedStrings: Description of a problem.";
}
@Override
void outputProblem(String message) {
LogWriter logWriter = new LocalLogWriter(LogWriterImpl.INFO_LEVEL);
logWriter.error(message);
}
public static void main(String[] args) throws Exception {
new FailWithErrorInOutputJUnitTest().execute();
}
}