Package test4

Examples of test4.NestedClass$S$S2


 
  /** @throws Exception */
  @org.junit.Test
  public void method_p_S2() throws Exception
  {
    S2 a = new S2( new S1( 1, 2, 3 ), new S1( 2, 3, 4 ), E1.A );
    svc.xresult = a;
    S2 r = test.p_S2( a );
    assertObjectEquals( a, r );
    check( What.CALL,
      ValueFactoryTest1._mt_org_apache_etch_tests_Test1_p_S2,
      new Field[] { ValueFactoryTest1._mf_a },
      new Object[] { a },
View Full Code Here


 
  /** @throws Exception */
  @org.junit.Test
  public void method_p_S2_array() throws Exception
  {
    S2 x = new S2( new S1( 1, 2, 3 ), new S1( 2, 3, 4 ), E1.A );
    S2 y = new S2( new S1( 2, 3, 4 ), new S1( 3, 4, 5 ), E1.B );
    S2[] a = { x, y };
    svc.xresult = a;
    S2[] r = test.p_S2_array( a );
    assertObjectEquals( a, r );
    check( What.CALL,
View Full Code Here

 
  /** */
  @Test public void  testS2() {
    try
    {
      S2 a  = null;
      testServer.p_S2( a );
      testClient.p_S2( a );
    }
    catch ( UnsupportedOperationException e )
    {
View Full Code Here

 
  /** */
  @Test public void  testS2Array() {
    try
    {
      S2 a[]  = null;
      testServer.p_S2_array( a );
      testClient.p_S2_array( a );
    }
    catch ( UnsupportedOperationException e )
    {
View Full Code Here

TOP

Related Classes of test4.NestedClass$S$S2

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.