tests/libjava-mauve/src/gnu/testlet/java/nio/ShortBuffer/compact.java
branchjk_new_structure
changeset 1541 75c2e24dea9a
parent 1540 92ac284961c1
child 1542 be11db817bcf
equal deleted inserted replaced
1540:92ac284961c1 1541:75c2e24dea9a
     1 // Tags: JDK1.4
       
     2 
       
     3 // Copyright (C) 2004 Michael Koch <konqueror@gmx.de>
       
     4 
       
     5 // This file is part of Mauve.
       
     6 
       
     7 // Mauve is free software; you can redistribute it and/or modify
       
     8 // it under the terms of the GNU General Public License as published by
       
     9 // the Free Software Foundation; either version 2, or (at your option)
       
    10 // any later version.
       
    11 
       
    12 // Mauve is distributed in the hope that it will be useful,
       
    13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    15 // GNU General Public License for more details.
       
    16 
       
    17 // You should have received a copy of the GNU General Public License
       
    18 // along with Mauve; see the file COPYING.  If not, write to
       
    19 // the Free Software Foundation, 59 Temple Place - Suite 330,
       
    20 // Boston, MA 02111-1307, USA.
       
    21 
       
    22 
       
    23 package gnu.testlet.java.nio.ShortBuffer;
       
    24 
       
    25 import gnu.testlet.Testlet;
       
    26 import gnu.testlet.TestHarness;
       
    27 
       
    28 import java.nio.*;
       
    29 
       
    30 public class compact implements Testlet
       
    31 {
       
    32   public void test(TestHarness h)
       
    33   {
       
    34     ShortBuffer buffer = ShortBuffer.allocate(10);
       
    35     buffer.position(0);
       
    36     buffer.limit(3);
       
    37     buffer.compact();
       
    38 
       
    39     h.check(buffer.position(), 3, "position after compact()");
       
    40     h.check(buffer.limit(), 10, "limit after compact()");
       
    41 
       
    42     ByteBuffer bb = ByteBuffer.allocate(200);
       
    43     buffer = bb.asShortBuffer();
       
    44     buffer.position(0);
       
    45     buffer.limit(3);
       
    46     buffer.compact();
       
    47 
       
    48     h.check(buffer.position(), 3, "position after compact()");
       
    49     h.check(buffer.limit(), 100, "limit after compact()");
       
    50   }
       
    51 }