Removed temporary test.

This commit is contained in:
Simone Bordet 2012-02-24 00:50:29 +01:00
parent cb1be263c4
commit 94d5bccbd3
1 changed files with 0 additions and 18 deletions

View File

@ -87,22 +87,4 @@ public class SettingsTest extends AbstractTest
Assert.assertTrue(latch.await(5, TimeUnit.SECONDS)); Assert.assertTrue(latch.await(5, TimeUnit.SECONDS));
} }
@Test
public void test() throws Exception
{
startServer(new ServerSessionFrameListener.Adapter()
{
@Override
public void onConnect(Session session)
{
Map<SettingsInfo.Key, Integer> settings = new HashMap<>();
settings.put(new SettingsInfo.Key(0x01_00_00_04), 25);
settings.put(new SettingsInfo.Key(0x00_00_07_00), 49152);
SettingsInfo settingsInfo = new SettingsInfo(settings, true);
session.settings(settingsInfo);
}
});
new CountDownLatch(1).await();
}
} }