Package org.apache.harmony.security.tests.support

Examples of org.apache.harmony.security.tests.support.MySignature1.clone()


   * Class under test for Object clone()
   */
  public void testClone() {
    MySignature1 s = new MySignature1("ABC");
    try {
      s.clone();
      fail("No expected CloneNotSupportedException");
    } catch (CloneNotSupportedException e) { 
    } 
  }

View Full Code Here


   * Class under test for Object clone()
   */
  public void testClone() {
    MySignature1 s = new MySignature1("ABC");
    try {
      s.clone();
      fail("No expected CloneNotSupportedException");
    } catch (CloneNotSupportedException e) { 
    } 
  }

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.