vmtest/src/test/java/org/apidesign/bck2brwsr/tck/CloneTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 07 Jan 2013 17:22:59 +0100
changeset 412 777b9b841f15
parent 411 6506d5132e03
child 413 c91483c86597
permissions -rw-r--r--
Make sure this has some value
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.tck;
    19 
    20 import org.apidesign.bck2brwsr.vmtest.Compare;
    21 import org.apidesign.bck2brwsr.vmtest.VMTest;
    22 import org.testng.annotations.Factory;
    23 
    24 /**
    25  *
    26  * @author Jaroslav Tulach <jtulach@netbeans.org>
    27  */
    28 public class CloneTest {
    29     private int value;
    30     
    31     @Compare public Object notSupported() {
    32         try {
    33             return this.clone();
    34         } catch (CloneNotSupportedException ex) {
    35             return ex.getClass().getName() + ":" + ex.getMessage();
    36         }
    37     }
    38 
    39     @Compare public String sameClass() throws CloneNotSupportedException {
    40         return new Clnbl().clone().getClass().getName();
    41     }
    42 
    43     @Compare public boolean differentInstance() throws CloneNotSupportedException {
    44         Clnbl orig = new Clnbl();
    45         return orig == orig.clone();
    46     }
    47 
    48     @Compare public int sameReference() throws CloneNotSupportedException {
    49         CloneTest self = this;
    50         Clnbl orig = new Clnbl();
    51         self.value = 33;
    52         orig.ref = self;
    53         return ((Clnbl)orig.clone()).ref.value;
    54     }
    55 
    56     @Compare public int sameValue() throws CloneNotSupportedException {
    57         Clnbl orig = new Clnbl();
    58         orig.value = 10;
    59         return ((Clnbl)orig.clone()).value;
    60     }
    61     
    62     @Factory
    63     public static Object[] create() {
    64         return VMTest.create(CloneTest.class);
    65     }
    66     
    67     public static final class Clnbl implements Cloneable {
    68         public CloneTest ref;
    69         private int value;
    70 
    71         @Override
    72         public Object clone() throws CloneNotSupportedException {
    73             return super.clone();
    74         }
    75     }
    76 }