src/test/java/org/apidesign/java4browser/Instance.java
changeset 14 018eee22b8cf
parent 13 99f832e5765f
child 15 65f6fdfd34b6
     1.1 --- a/src/test/java/org/apidesign/java4browser/Instance.java	Wed Sep 19 19:57:45 2012 +0200
     1.2 +++ b/src/test/java/org/apidesign/java4browser/Instance.java	Wed Sep 19 20:22:12 2012 +0200
     1.3 @@ -42,9 +42,11 @@
     1.4          i.b = (byte)0x09;
     1.5          return (i.i - i.b) * i.d;
     1.6      }
     1.7 -    public static byte virtualBytes() {
     1.8 +    public static int virtualBytes() {
     1.9          Instance i = new InstanceSub(7, 2.2d);
    1.10          i.setByte((byte)0x0a);
    1.11 -        return i.getByte();
    1.12 +        Instance i2 = new Instance(3, 333.0d);
    1.13 +        i2.setByte((byte)44);
    1.14 +        return i.getByte() + i2.getByte();
    1.15      }
    1.16  }