Create an automatic UI test for the Git Import Wizard
commit4f6371397f0880f6ce4c011eb1c8461fe44f9c53
authorRobin Rosenberg <robin.rosenberg@dewire.com>
Tue, 26 Jan 2010 06:34:12 +0000 (26 07:34 +0100)
committerRobin Rosenberg <robin.rosenberg@dewire.com>
Tue, 2 Feb 2010 07:12:08 +0000 (2 08:12 +0100)
tree4e3116b625b84f9de7a300a04353b1d39f655f16
parent617a563f9f1c264b123f8c1d01d7518d1f946799
Create an automatic UI test for the Git Import Wizard

Things like dialogs and such require a different approach. The
strategy is to use SWTBot for runnings UI-oriented tests.

Cleanup and restructuring by Ketan Padegaonkar using page
objects * (http://code.google.com/p/webdriver/wiki/PageObjects)

CQ: 3738
Bug: 300768
Change-Id: Ibc4c7a5ad6d9747fceb516c02d96dfc2b09d3b5a
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
15 files changed:
org.eclipse.egit.ui.test/.classpath [new file with mode: 0644]
org.eclipse.egit.ui.test/.gitignore [new file with mode: 0644]
org.eclipse.egit.ui.test/.project [new file with mode: 0644]
org.eclipse.egit.ui.test/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
org.eclipse.egit.ui.test/META-INF/MANIFEST.MF [new file with mode: 0644]
org.eclipse.egit.ui.test/build.properties [new file with mode: 0644]
org.eclipse.egit.ui.test/org.eclipse.egit.ui--All tests.launch [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/Activator.java [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/AllTests.java [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/Eclipse.java [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/clone/GitCloneWizardTest.java [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/clone/GitImportRepoWizard.java [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/clone/RepoPropertiesPage.java [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/clone/RepoRemoteBranchesPage.java [new file with mode: 0644]
org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/clone/WorkingCopyPage.java [new file with mode: 0644]