Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのようなクラスを持っています:
Class A extends B Class B extends C Class C{ protected ArrayList<Dialog> variable; }
クラス A の JUnit テストを実行したいのですが、クラス C の変数のインスタンスを取得したいのですが、これを行う方法はありますか?
どうもありがとうございました。
クラスBにゲッターとセッターを追加する必要があり、このようにクラスA内の変数にアクセスできます
class C{ protected Object variable; } class B extends C{ protected void setObject(Object obj) this.variable = obj; } protected Object getObject(){ return this.variable; } } class A extends B{ }