/* * Copyright (c) 2007, 2011, 2012, 2015 Eike Stepper (Berlin, Germany) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eike Stepper - initial API and implementation */ package org.eclipse.net4j.tests; import java.nio.channels.Selector; import java.nio.channels.spi.SelectorProvider; import junit.framework.TestCase; /** * @author Eike Stepper */ public class SelectorTest extends TestCase { public void testOpen() throws Exception { SelectorProvider provider = SelectorProvider.provider(); System.out.println(provider.getClass().getName()); for (int i = 0; i < 5; i++) { long start = System.currentTimeMillis(); Selector selector = provider.openSelector(); long duration = System.currentTimeMillis() - start; System.out.println(duration); selector.close(); } } }