27 lines
383 B
Java
27 lines
383 B
Java
|
|
/**
|
||
|
|
* Copyright (C) 2009 Scalable Solutions.
|
||
|
|
*/
|
||
|
|
|
||
|
|
package se.scalablesolutions.akka.api;
|
||
|
|
|
||
|
|
import org.junit.*;
|
||
|
|
import static org.junit.Assert.*;
|
||
|
|
|
||
|
|
import junit.framework.TestSuite;
|
||
|
|
|
||
|
|
public class NioTest extends TestSuite {
|
||
|
|
|
||
|
|
@BeforeClass
|
||
|
|
public static void initialize() {
|
||
|
|
}
|
||
|
|
|
||
|
|
@AfterClass
|
||
|
|
public static void cleanup() {
|
||
|
|
}
|
||
|
|
|
||
|
|
@Test
|
||
|
|
public void simpleRequestReply() {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|