Package test.container.X

Examples of test.container.X.Single2


    Single o2 = con2.get(Single.class);
    assertNotSame(o0, o2);
    assertNotSame(o, o2);
    assertNotSame(o.n, o2.n);

    Single2 oo = con.get(Single2.class);
    assertSame(oo, oo.s);
    assertSame(New2.class, oo.n.getClass());
    assertSame(New.class, oo.n0.getClass());
    assertNotSame(o.n, oo.n0);
  }
View Full Code Here

TOP

Related Classes of test.container.X.Single2

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.