package com.netflix.suro.routing.filter; import org.junit.After; import org.junit.Before; import org.junit.Test; import static com.netflix.suro.routing.filter.VerificationUtil.DUMMY_INPUT; import static org.junit.Assert.assertFalse; public class AlwaysFalseMessageFilterTest { @Before public void setUp() throws Exception { } @After public void tearDown() throws Exception { } @Test public void testAlwaysFalse() { assertFalse(AlwaysFalseMessageFilter.INSTANCE.apply(DUMMY_INPUT)); } }