aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/pnfsimulator/src/test/java/org/onap/pnfsimulator/SimulatorTest.java
blob: ccbb72846ce04ae3efee511168c79856bc9c82d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.onap.pnfsimulator;

import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Test;

public class SimulatorTest {

    @Test
    public void dummyTestToCheckEnvirometn() {
        Assertions.assertThat(true).isTrue();
    }
}