aboutsummaryrefslogtreecommitdiffstats
path: root/sli/recording/src/test/java/org/onap/ccsdk/sli/core/sli/recording/TestFileRecorder.java
blob: c879d8f6268e41223429b07a027e0d3fbbc87b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
 *
 */
package org.onap.ccsdk.sli.core.sli.recording;

import static org.junit.Assert.*;
import java.util.HashMap;
import org.junit.Test;
import org.onap.ccsdk.sli.core.sli.SvcLogicException;

/**
 * @author dt5972
 *
 */
public class TestFileRecorder {

    /**
     * Test method for {@link org.onap.ccsdk.sli.core.sli.recording.FileRecorder#record(java.util.Map)}.
     */
    @Test
    public void testRecord() {

        FileRecorder recorder = new FileRecorder();

        HashMap<String,String> parms = new HashMap<>();
        parms.put("file", "/dev/null");
        parms.put("field1","hi");
        try {
            recorder.record(parms);
        } catch (SvcLogicException e) {
            fail("Caught SvcLogicException : "+e.getMessage());
        }
    }

}