blob: 1d83ba9e2e7525f342fa91796f8558c1dc8bab03 [file] [log] [blame]
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.tradefed.result;
import com.android.tradefed.config.OptionClass;
import com.android.tradefed.util.Email;
import com.android.tradefed.util.IEmail;
/**
* An {@link EmailResultReporter} that can also restrict notifications to just test failures.
*/
@OptionClass(alias = "test-failure-email")
public class TestFailureEmailResultReporter extends EmailResultReporter {
/**
* Default constructor
*/
public TestFailureEmailResultReporter() {
this(new Email());
}
/**
* Create a {@link TestFailureEmailResultReporter} with a custom {@link IEmail} instance to use.
* <p/>
* Exposed for unit testing.
*
* @param mailer the {@link IEmail} instance to use.
*/
protected TestFailureEmailResultReporter(IEmail mailer) {
super(mailer);
}
/**
* Send a message if there was an invocation failure.
*
* @return the return value of {@link #hasFailedTests()}.
*/
@Override
protected boolean shouldSendMessage() {
return hasFailedTests();
}
}