Package etch.tests.Inheritance

Examples of etch.tests.Inheritance.E3


 
  /** @throws Exception */
  @Test
  public void construct_e3() throws Exception
  {
    check_e3( new E3(), null, null, null, null, null, null );
   
    check_e3( new E3( null, null, null, null, null, null ),
      null, null, null, null, null, null );
   
    check_e3( new E3( 1, 2, 3, 4, 5, 6 ), 1, 2, 3, 4, 5, 6 );
  }
View Full Code Here


      "etch.tests.Inheritance$E2: a=1; b=2; c=3; d=4",
      new E2( 1, 2, 3, 4 ).toString() );
   
    assertEquals(
      "etch.tests.Inheritance$E3: a=1; b=2; c=3; d=4; e=5; f=6",
      new E3( 1, 2, 3, 4, 5, 6 ).toString() );
  }
View Full Code Here

TOP

Related Classes of etch.tests.Inheritance.E3

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.