Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modification to add automated ui test for CompleteFilterAnnotationQuickfix #1230

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Modification to add automated ui test for completefilterannotationqui…
…ckfix
dessina-devasia committed Jan 15, 2025
commit b205a06de2eb0e2e9db60dd9680137c4cbd53733
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*******************************************************************************
* Copyright (c) 2023, 2024 IBM Corporation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package io.openliberty.tools.intellij.it;

import org.junit.jupiter.api.BeforeAll;

import java.nio.file.Paths;

public class MavenSingleModLSP4JakartaTest extends SingleModLSP4JakartaTestCommon {

/**
* Application Name
*/
public static String PROJECT_NAME = "jakarta-sample";

/**
* The path to the folder containing the test projects.
*/
public static String PROJECTS_PATH = Paths.get("src", "test", "resources", "projects", "maven").toAbsolutePath().toString();

/**
* Application resoruce URL.
*/
public MavenSingleModLSP4JakartaTest() {
super(PROJECT_NAME, PROJECTS_PATH);
}

/**
* Prepares the environment for test execution.
*/
@BeforeAll
public static void setup() {
prepareEnv(PROJECTS_PATH, PROJECT_NAME);
}
}