-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added QuarkusNewProjectThirdPage to stabilize tests.
Signed-off-by: Oleksii Korniienko <[email protected]>
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...oss/tools/intellij/quarkus/fixtures/dialogs/project/pages/QuarkusNewProjectThirdPage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 Red Hat, Inc. | ||
* Distributed under license by Red Hat, Inc. All rights reserved. | ||
* This program is made available under the terms of the | ||
* Eclipse Public License v2.0 which accompanies this distribution, | ||
* and is available at https://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* Contributors: | ||
* Red Hat, Inc. - initial API and implementation | ||
******************************************************************************/ | ||
package org.jboss.tools.intellij.quarkus.fixtures.dialogs.project.pages; | ||
|
||
import com.intellij.remoterobot.RemoteRobot; | ||
import com.intellij.remoterobot.data.RemoteComponent; | ||
import com.intellij.remoterobot.fixtures.CommonContainerFixture; | ||
import com.intellij.remoterobot.fixtures.DefaultXpath; | ||
import com.intellij.remoterobot.fixtures.FixtureName; | ||
import org.jboss.tools.intellij.quarkus.utils.XPathDefinitions; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
/** | ||
* New project dialog fixture | ||
* | ||
* @author [email protected] | ||
*/ | ||
@DefaultXpath(by = "MyDialog type", xpath = XPathDefinitions.DIALOG_ROOT_PANE) | ||
@FixtureName(name = "New Project Dialog") | ||
public class QuarkusNewProjectThirdPage extends CommonContainerFixture { | ||
public QuarkusNewProjectThirdPage(@NotNull RemoteRobot remoteRobot, @NotNull RemoteComponent remoteComponent) { | ||
super(remoteRobot, remoteComponent); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters