Skip to content

Instantly share code, notes, and snippets.

@turugina
Created July 29, 2011 09:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save turugina/1113481 to your computer and use it in GitHub Desktop.
Save turugina/1113481 to your computer and use it in GitHub Desktop.
Get asset on test package with ServiceTestCase. (Android)
import android.content.Context;
import android.content.res.AssetManager;
import android.test.ServiceTestCase;
import com.example.android.HogeService;
public class HogeTest extends ServiceTestCase<HogeService>
{
private Context getTestContext() throws Exception
{
return (Context)getClass().getMethod("getTestContext").invoke(this);
}
public void testHoge() throws Exception
{
AssetManager am = getTestContext().getResources().getAssets();
java.io.InputStream is = am.open("hoge.txt");
try {
// hogehoge
}
finally {
is.close();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment