< prev index next >

test/sun/security/smartcardio/TestPresent.java

Print this page




   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6293769 6294527
  27  * @summary test that the isCardPresent()/waitForX() APIs work correctly
  28  * @author Andreas Sterbenz

  29  * @run main/manual TestPresent
  30  */
  31 
  32 // This test requires special hardware.
  33 
  34 import java.util.List;
  35 import javax.smartcardio.CardTerminal;
  36 import javax.smartcardio.TerminalFactory;
  37 
  38 public class TestPresent extends Utils {
  39 
  40     private static class Timer {
  41         private long time = System.currentTimeMillis();
  42         long update() {
  43             long t = System.currentTimeMillis();
  44             long diff = t - time;
  45             time = t;
  46             return diff;
  47         }
  48         long print() {




   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 6293769 6294527
  27  * @summary test that the isCardPresent()/waitForX() APIs work correctly
  28  * @author Andreas Sterbenz
  29  * @modules java.smartcardio/javax.smartcardio
  30  * @run main/manual TestPresent
  31  */
  32 
  33 // This test requires special hardware.
  34 
  35 import java.util.List;
  36 import javax.smartcardio.CardTerminal;
  37 import javax.smartcardio.TerminalFactory;
  38 
  39 public class TestPresent extends Utils {
  40 
  41     private static class Timer {
  42         private long time = System.currentTimeMillis();
  43         long update() {
  44             long t = System.currentTimeMillis();
  45             long diff = t - time;
  46             time = t;
  47             return diff;
  48         }
  49         long print() {


< prev index next >