spring web 業務系統單測使用Jmockit 進行誇層mock

來源:互聯網
上載者:User

標籤:

spring業務系統一般使用單例. 多層調用.

例如 A調用B,B調用C.

要測試A的方法,需要誇多層mock C的方法.

使用jmockit的NonStrictExpectations


@Servicepublic class A {    @Autowired    B b;    public void method() {        b.method();    }}





@Servicepublic class B {    @Autowired    IC c;    public void method() {        System.out.println("b=" + c.method());    }}


@Servicepublic class C implements IC {    @Override    public Integer method() {        System.out.println("123");        return 1;    }}



public interface IC {    public Integer method();}



@RunWith(SpringJUnit4ClassRunner.class)@TransactionConfiguration(transactionManager = "kuaipayTransactionManager", defaultRollback = true)@Transactional@ContextConfiguration(locations = { "classpath:kuaipay-api-impl-test-application.xml" })@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class,                         TransactionalTestExecutionListener.class })public class JmockitTestMock  {    @Autowired    A  a;    // 對介面進行mock,對應dubbo    @Autowired    IC ic;    // 誇層 mock.直接把class給替換了. jmockit的神力    @Test    public void testMockit() {        new <span style="color:#ff0000;">NonStrictExpectations</span>(ic) {            {                ic.method();                result = Integer.valueOf(5);            }        };        a.method();    }}


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

spring web 業務系統單測使用Jmockit 進行誇層mock

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.