Package org.springframework.tests.sample.beans

Examples of org.springframework.tests.sample.beans.Person.echo()


    pf.addAdvice(new CountingBeforeAdvice());
    pf.addAdvice(new CountingAfterReturningAdvice());
    pf.addAdvice(cta);
    Person p = (Person) createAopProxy(pf).getProxy();

    p.echo(null);
    assertEquals(0, cta.getCalls());
    try {
      p.echo(new IOException());
    }
    catch (IOException ex) {
View Full Code Here


    Person p = (Person) createAopProxy(pf).getProxy();

    p.echo(null);
    assertEquals(0, cta.getCalls());
    try {
      p.echo(new IOException());
    }
    catch (IOException ex) {

    }
    assertEquals(1, cta.getCalls());
View Full Code Here

    a2.addAdvice(ni);
    p2.getAge();
    assertEquals(1, ni.getCount());

    cta = (CountingThrowsAdvice) a2.getAdvisors()[3].getAdvice();
    p2.echo(null);
    assertEquals(1, cta.getCalls());
    try {
      p2.echo(new IOException());
    }
    catch (IOException ex) {
View Full Code Here

    cta = (CountingThrowsAdvice) a2.getAdvisors()[3].getAdvice();
    p2.echo(null);
    assertEquals(1, cta.getCalls());
    try {
      p2.echo(new IOException());
    }
    catch (IOException ex) {

    }
    assertEquals(2, cta.getCalls());
View Full Code Here

    // Count is now 2
    Person p2 = (Person) SerializationTestUtils.serializeAndDeserialize(proxied);
    NopInterceptor nop2 = (NopInterceptor) ((Advised) p2).getAdvisors()[0].getAdvice();
    p2.getName();
    assertEquals(2, nop2.getCount());
    p2.echo(null);
    assertEquals(3, nop2.getCount());
  }

  @Test
  public void testEqualsAndHashCode() throws Exception {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.