Home | History | Annotate | Download | only in result
      1 /*
      2  * Copyright (C) 2012 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 package com.android.tradefed.result;
     17 
     18 import junit.framework.TestCase;
     19 
     20 /**
     21  * Unit tests for {@link TestFailureEmailResultReporter}.
     22  */
     23 public class TestFailureEmailResultReporterTest extends TestCase {
     24     private class FakeEmailResultReporter extends TestFailureEmailResultReporter {
     25         private boolean mHasFailedTests;
     26 
     27         FakeEmailResultReporter(boolean hasFailedTests) {
     28             mHasFailedTests = hasFailedTests;
     29         }
     30 
     31         /**
     32          * {@inheritDoc}
     33          */
     34         @Override
     35         public boolean hasFailedTests() {
     36             return mHasFailedTests;
     37         }
     38     }
     39 
     40     /**
     41      * Test that {@link TestFailureEmailResultReporter#shouldSendMessage()} returns
     42      * {@link CollectingTestListener#hasFailedTests()}.
     43      */
     44     public void testShouldSendMessage() {
     45         // Send email if there is a test failure.
     46         FakeEmailResultReporter r = new FakeEmailResultReporter(true);
     47         assertTrue(r.shouldSendMessage());
     48 
     49         // Don't send email if there is no test failure.
     50         r = new FakeEmailResultReporter(false);
     51         assertFalse(r.shouldSendMessage());
     52     }
     53 }
     54