diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-11-02 10:17:58 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-11-02 10:26:53 +0100 |
commit | 914ff85f6b8fd65c31a64fbd9276249260b66707 (patch) | |
tree | 0753995b56a16e42b48fa88a499ce02666069eab /it | |
parent | 787da65b0d08e14cabe9f45e27514f8e418c1375 (diff) | |
download | sonarqube-914ff85f6b8fd65c31a64fbd9276249260b66707.tar.gz sonarqube-914ff85f6b8fd65c31a64fbd9276249260b66707.zip |
SONAR-6331 improve display of measures on the project overview page
Diffstat (limited to 'it')
-rw-r--r-- | it/it-tests/src/test/resources/projectOverview/ProjectOverviewTest/test_project_overview_after_first_analysis.html | 108 |
1 files changed, 56 insertions, 52 deletions
diff --git a/it/it-tests/src/test/resources/projectOverview/ProjectOverviewTest/test_project_overview_after_first_analysis.html b/it/it-tests/src/test/resources/projectOverview/ProjectOverviewTest/test_project_overview_after_first_analysis.html index 2b218e58e1d..ddbe51f8e0b 100644 --- a/it/it-tests/src/test/resources/projectOverview/ProjectOverviewTest/test_project_overview_after_first_analysis.html +++ b/it/it-tests/src/test/resources/projectOverview/ProjectOverviewTest/test_project_overview_after_first_analysis.html @@ -2,61 +2,65 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head profile="http://selenium-ide.openqa.org/profiles/test-case"> -<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> -<link rel="selenium.base" href="http://localhost:49506" /> -<title>test_project_overview_after_first_analysis</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> + <link rel="selenium.base" href="http://localhost:49506"/> + <title>test_project_overview_after_first_analysis</title> </head> <body> <table cellpadding="1" cellspacing="1" border="1"> -<thead> -<tr><td rowspan="1" colspan="3">test_project_overview_after_first_analysis</td></tr> -</thead><tbody> -<tr> - <td>open</td> - <td>/sonar/overview?id=project-for-overview</td> - <td></td> -</tr> -<tr> - <td>waitForTextPresent</td> - <td>*Quality Gate*Passed*</td> - <td></td> -</tr> -<tr> - <td>waitForTextPresent</td> - <td>*A*0*Issues*0*Debt*</td> - <td></td> -</tr> -<tr> - <td>waitForTextPresent</td> - <td>*Blocker*0*Critical*0*Major*0*Minor*0*Info*0*</td> - <td></td> -</tr> -<tr> - <td>waitForTextPresent</td> - <td>*0.0%*Duplications*0*Duplicated Blocks*</td> - <td></td> -</tr> -<tr> - <td>waitForTextPresent</td> - <td>*13*Lines of Code*1*Files*</td> - <td></td> -</tr> -<tr> - <td>assertTextNotPresent</td> - <td>*Coverage*</td> - <td></td> -</tr> -<tr> - <td>waitForTextPresent</td> - <td>*Quality Gate*SonarQube way*</td> - <td></td> -</tr> -<tr> - <td>waitForTextPresent</td> - <td>*Quality Profiles*Xoo*Basic*</td> - <td></td> -</tr> + <thead> + <tr> + <td rowspan="1" colspan="3">test_project_overview_after_first_analysis</td> + </tr> + </thead> + <tbody> + <tr> + <td>open</td> + <td>/sonar/overview?id=project-for-overview</td> + <td></td> + </tr> + <tr> + <td>waitForText</td> + <td>id=content</td> + <td>*Quality Gate*Passed*</td> + </tr> + <tr> + <td>waitForText</td> + <td>id=content</td> + <td>*A*0*Issues*0*Debt*</td> + </tr> + <tr> + <td>waitForText</td> + <td>id=content</td> + <td>*Blocker*0*Critical*0*Major*0*Minor*0*Info*0*</td> + </tr> + <tr> + <td>waitForText</td> + <td>id=content</td> + <td>*0.0%*Duplications*0*Duplicated Blocks*</td> + </tr> + <tr> + <td>waitForText</td> + <td>id=content</td> + <td>*13*Lines of Code*1*Files*</td> + </tr> + <tr> + <td>assertNotText</td> + <td>id=content</td> + <td>*Coverage*</td> + </tr> + <tr> + <td>waitForText</td> + <td>id=content</td> + <td>*Quality Gate*SonarQube way*</td> + </tr> + <tr> + <td>waitForText</td> + <td>id=content</td> + <td>*Quality Profiles*Xoo*Basic*</td> + </tr> -</tbody></table> + </tbody> +</table> </body> </html> |