package org.vimtest;

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


/**
 * TestAppIT
 */
public class AppTestIntegration {

    @Test
    public void test_integration() {
        Assertions.assertEquals(true, true);
    }

    @Test
    public void test_integration2() {
        Assertions.assertEquals(true, true);
    }

    @Test
    public void test_integration3() {
        Assertions.assertEquals(true, true);
    }
}
