Add missing @Test annotation

This commit is contained in:
Norman Maurer 2014-06-26 12:24:44 +02:00
parent f08848da7c
commit af042bb7d2

View File

@ -16,9 +16,11 @@
package io.netty.channel.epoll;
import org.junit.Assert;
import org.junit.Test;
public class EpollTest {
@Test
public void testIsAvailable() {
Assert.assertTrue(Epoll.isAvailable());
}