Package test.component

Examples of test.component.AddService


    Assert.assertThat(m.getNum(), is(3));
  }

  @Test
  public void testSingle() {
    AddService t = applicationContext.getBean("addService");
    t.getI();
    t.getI();
    Assert.assertThat(t.getI(), greaterThan(0));
  }
View Full Code Here


    Assert.assertThat(m.getNum(), is(3));
  }

  @Test
  public void testSingle() {
    AddService t = applicationContext.getBean("addService");
    t.getI();
    t.getI();
    Assert.assertThat(t.getI(), greaterThan(0));
  }
View Full Code Here

TOP

Related Classes of test.component.AddService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.