package org.vimtest;

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


/**
 * TestAppIT
 */
public class AppIT {

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

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

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