-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
205: test when two elements are selected
Task-Url: #205
- Loading branch information
1 parent
d311a2c
commit a2d2793
Showing
3 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
...lipse.ui.tests/src/org/pitest/pitclipse/ui/behaviours/pageobjects/NoTestsFoundDialog.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,41 @@ | ||
/******************************************************************************* | ||
* Copyright 2022 Lorenzo Bettini and contributors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy | ||
* of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
******************************************************************************/ | ||
|
||
package org.pitest.pitclipse.ui.behaviours.pageobjects; | ||
|
||
import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot; | ||
import org.eclipse.swtbot.swt.finder.waits.Conditions; | ||
import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell; | ||
|
||
public class NoTestsFoundDialog { | ||
|
||
private final SWTWorkbenchBot bot; | ||
|
||
public NoTestsFoundDialog(SWTWorkbenchBot bot) { | ||
this.bot = bot; | ||
} | ||
|
||
public void assertAppears() { | ||
SWTBotShell shell = bot.shell("Pitclipse"); | ||
shell.activate(); | ||
bot.label("No tests found"); | ||
bot.button("OK").click(); | ||
|
||
// Ensure the project is fully created before moving on | ||
bot.waitUntil(Conditions.shellCloses(shell)); | ||
} | ||
|
||
} |
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
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