package org.vimtest;

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


/**
 * TestAppIT
 */
public class AppITCase {

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

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

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