I\'m using AndroidTestCase for unit testing. I have a unit test which is failing, but I haven\'t figured out how to display output from it. For example, I don\'
AndroidTestCase
Just to be clear, if you're running an emulator you have to use adb logcat.
adb logcat
Also, make sure you're using the standard android.util.Log.d() to send your output.
android.util.Log.d()