Package org.mybatis.spring.sample.domain

Examples of org.mybatis.spring.sample.domain.User


    this.fooService = fooService;
  }

  @Test
  public final void testFooService() {
    User user = this.fooService.doSomeBusinessStuff("u1");
    assertNotNull(user);
    assertEquals("Pocoyo", user.getName());
  }
View Full Code Here


  @Autowired
  private FooService fooService;

  @Test
  public void test() {
    User user = fooService.doSomeBusinessStuff("u1");
    Assert.assertEquals("Pocoyo", user.getName());
  }
View Full Code Here

TOP

Related Classes of org.mybatis.spring.sample.domain.User

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.