Package etch.tests.Inheritance

Examples of etch.tests.Inheritance.E2


 
  /** @throws Exception */
  @Test
  public void construct_e2() throws Exception
  {
    check_e2( new E2(), null, null, null, null );
   
    check_e2( new E2( null, null, null, null ), null, null, null, null );
   
    check_e2( new E2( 1, 2, 3, 4 ), 1, 2, 3, 4 );
  }
View Full Code Here


      "etch.tests.Inheritance$E1: a=1; b=2",
      new E1( 1, 2 ).toString() );
   
    assertEquals(
      "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.E2

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.