プロジェクトのJUnitテストケースを作成するためにEclipseを使用しています。私のプロジェクトには、AIDLに基づくバインドされたサービスが含まれています。プロジェクトを実行した後、genフォルダーにAIDL用の自動生成されたJavaファイルを取得します。
このファイルには、次のようなメソッドを持つStubクラスが含まれています
public android.os.IBinder asBinder()
public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
およびメソッドを持つProxyクラス
public android.os.IBinder asBinder()
public java.lang.String getInterfaceDescriptor()
また、私が作成したいくつかのメソッド。JUintTestを使用して上記のメソッドをテストしたいと思います。ServiceTestCaseを使用してこれらのメソッドをテストすることは可能 ですか、それとも他の方法を使用してこれをテストできますか?