aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/helper/LogTest.java
blob: 853eb05c9fc13e7936528c9ecede9dca9d77f69a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.traccar.helper;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class LogTest {
    
    @Test
    public void testLog() {
        assertEquals("test - Exception (LogTest:11 < ...)", Log.exceptionStack(new Exception("test")));
    }

}