aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/web/AsyncServletTest.java
blob: e2f7b2f219e5b904e777f2565461fdd6becce915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.traccar.web;

import org.junit.Assert;
import org.junit.Test;

public class AsyncServletTest {

    @Test
    public void testDebugDisabled() {
        Assert.assertFalse("debugging enabled", AsyncServlet.AsyncSession.DEBUG_ASYNC);
    }

}