00001 /* 00002 * Test.java 00003 * 00004 * Created on May 14, 2005, 12:55 PM 00005 * Created by Detro - 566/2145 00006 */ 00007 00008 package org.jaebi.test.server.core; 00009 00010 import org.jaebi.server.auth.Authenticator; 00011 import org.jaebi.server.auth.AuthenticatorImpl; 00012 00017 public class MainTestAuthenticatorImpl { 00018 public static void main(String args[]) { 00019 Authenticator auth = new AuthenticatorImpl(); 00020 for ( int i = 0; i < 1000000; i++ ) { 00021 System.out.println( auth.getAuthentication("Ivan") ); 00022 } 00023 } 00024 }