0

私はクラスを持っています:

@Component
public class B {
    @Autowired
    private A a; 
}

A はコンポーネントです。

@Component
public class A{}

単体テスト クラス BTest では:

public class BTest {
    @Test
    public void testBMethod() {
    }
}

コンテキストを定義したり、Bean を選択したりするために xml を使用していません。

テストを実行できる最もクリーンな方法は何ですか?

4

1 に答える 1