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