1 /* 2 * Copyright (C) 2009 The Guava Authors 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 17 package com.google.common.testing; 18 19 import com.google.common.annotations.GwtCompatible; 20 import java.util.logging.Level; 21 import java.util.logging.Logger; 22 23 /** 24 * Simple utility for when you want to create a {@link TearDown} that may throw an exception but 25 * should not fail a test when it does. (The behavior of a {@code TearDown} that throws an exception 26 * varies; see its documentation for details.) Use it just like a {@code TearDown}, except override 27 * {@link #sloppyTearDown()} instead. 28 * 29 * @author Luiz-Otavio Zorzella 30 * @since 10.0 31 */ 32 @GwtCompatible 33 @ElementTypesAreNonnullByDefault 34 public abstract class SloppyTearDown implements TearDown { 35 private static final Logger logger = Logger.getLogger(SloppyTearDown.class.getName()); 36 37 @Override tearDown()38 public final void tearDown() { 39 try { 40 sloppyTearDown(); 41 } catch (Throwable t) { 42 logger.log(Level.INFO, "exception thrown during tearDown: " + t.getMessage(), t); 43 } 44 } 45 sloppyTearDown()46 public abstract void sloppyTearDown() throws Exception; 47 } 48