1 package com.xtremelabs.robolectric.shadows; 2 3 import android.database.sqlite.SQLiteClosable; 4 5 import com.xtremelabs.robolectric.internal.Implementation; 6 import com.xtremelabs.robolectric.internal.Implements; 7 8 /** 9 * Shadow for {@code SQLiteCloseable}. Though {@code SQLiteCloseable} is an abstract 10 * class, a shadow is necessary. Its methods that are overridden in subclasses 11 * require this shadow in order to be properly instrumented. 12 */ 13 @Implements(SQLiteClosable.class) 14 public class ShadowSQLiteCloseable { 15 16 @Implementation close()17 public void close() { 18 } 19 20 } 21