2 | If checked, the default behavior of failing a build on missing test result files
3 | or empty test results is changed to not affect the status of the build.
4 | Please note that this setting make it harder to spot misconfigured jobs or
5 | build failures where the test tool does not exit with an error code when
6 | not producing test report files.
7 |
8 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-checksName.html:
--------------------------------------------------------------------------------
1 |
2 | If provided, and publishing checks enabled, the plugin will use this name when publishing results to corresponding
3 | SCM hosting platforms. If not, a default of "Tests" will be used.
4 |
5 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-healthScaleFactor.html:
--------------------------------------------------------------------------------
1 |
2 | The amplification factor to apply to test failures when computing the test result contribution to the build health
3 | score.
4 |
5 | The default factor is
1.0
6 |
7 | - A factor of
0.0
will disable the test result contribution to build health score.
8 | - A factor of
0.1
means that 10% of tests failing will score 99% health
9 | - A factor of
0.5
means that 10% of tests failing will score 95% health
10 | - A factor of
1.0
means that 10% of tests failing will score 90% health
11 | - A factor of
2.0
means that 10% of tests failing will score 80% health
12 | - A factor of
2.5
means that 10% of tests failing will score 75% health
13 | - A factor of
5.0
means that 10% of tests failing will score 50% health
14 | - A factor of
10.0
means that 10% of tests failing will score 0% health
15 |
16 | The factor is persisted with the build results, so changes will only be reflected in new builds.
17 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-healthScaleFactor_ja.html:
--------------------------------------------------------------------------------
1 |
2 | 空模様(ビルドの状態)へのテスト結果の影響を算出する際の失敗したテストに適用する倍率です。
3 |
4 | デフォルトの倍率は
1.0
です。
5 |
6 | - 倍率
0.0
の場合、空模様の算出にテスト結果は使用しません。
7 | - 倍率
0.1
の場合、テストの10%が失敗すると空模様は99%になります。
8 | - 倍率
0.5
の場合、テストの10%が失敗すると空模様は95%になります。
9 | - 倍率
1.0
の場合、テストの10%が失敗すると空模様は90%になります。
10 | - 倍率
2.0
の場合、テストの10%が失敗すると空模様は80%になります。
11 | - 倍率
2.5
の場合、テストの10%が失敗すると空模様は750%になります。
12 | - 倍率
5.0
の場合、テストの10%が失敗すると空模様は50%になります。
13 | - 倍率
10.0
の場合、テストの10%が失敗すると空模様は0%になります。
14 |
15 | 倍率はビルドごとに保存されるので、変更は新規のビルドから反映されます。
16 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-keepLongStdio.html:
--------------------------------------------------------------------------------
1 |
2 |
Deprecated, use stdioRetention instead.
3 |
4 | If checked, any standard output or error from a test suite will be retained
5 | in the test results after the build completes. (This refers only to additional
6 | messages printed to console, not to a failure stack trace.) Such output is
7 | always kept if the test failed, but by default lengthy output from passing
8 | tests is truncated to save space. Check this option if you need to see every
9 | log message from even passing tests, but beware that Jenkins's memory consumption
10 | can substantially increase as a result, even if you never look at the test results!
11 |
12 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-parseOldReports.html:
--------------------------------------------------------------------------------
1 |
2 | If this option is unchecked, then the plugin will not parse report files older than the start of the build.
3 | If this option is checked, then the build will parse and include in the report the test files older than the build start.
4 |
5 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-skipMarkingBuildUnstable.html:
--------------------------------------------------------------------------------
1 |
2 | If this option is unchecked, then the plugin will mark the build as unstable when it finds at least 1 test failure.
3 | If this option is checked, then the build will still be successful even if there are test failures reported.
4 |
5 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-skipPublishingChecks.html:
--------------------------------------------------------------------------------
1 |
2 | If this option is unchecked, then the plugin automatically publishes the test results to corresponding SCM hosting platforms.
3 | For example, if you are using this feature for a GitHub organization project, the warnings will be published to
4 | GitHub through the Checks API. If this operation slows down your build, or you don't want to publish the warnings to
5 | SCM platforms, you can use this option to deactivate this feature.
6 |
7 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help-stdioRetention.html:
--------------------------------------------------------------------------------
1 |
2 | Controls how standard output or error from a test suite will be retained
3 | in the test results after the build completes. (This refers only to additional
4 | messages printed to console, not to a failure stack trace.) Some output is
5 | always retained for tests, but by default, excessively long output is truncated
6 | to save disk space. This property can be used to control whether that truncation
7 | takes place:
8 |
9 | - If set to 'all', then no truncation will take place and the complete output from
10 | every test will be stored.
11 | - If set to 'failed', then the complete output from all failed tests will be stored,
12 | but long output from passing tests will be truncated.
13 | - If set to 'none', then long output from every test will be truncated, regardless
14 | of whether they passed or failed.
15 |
16 | Beware that storing large output can cause Jenkins's memory consumption to
17 | substantially increase, even if you never look at the test results.
18 |
19 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins understands the JUnit test report XML format (which is also used by TestNG).
3 | When this option is configured, Jenkins can provide useful information about test results,
4 | such as historical test result trends, a web UI for viewing test reports, tracking failures,
5 | and so on.
6 |
7 |
8 | To use this feature, first set up your build to run tests, then
9 | specify the path to JUnit XML files in the
10 | Ant glob syntax,
11 | such as **/build/test-reports/*.xml. Be sure not to include any non-report
12 | files into this pattern. You can specify multiple patterns of files separated by commas.
13 |
14 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help_de.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins unterstützt das JUnit-XML-Format für Testergebnisse (das auch von
3 | TestNG verwendet wird). Wenn diese Option konfiguriert ist, kann Jenkins
4 | nützliche Auswertungen der Testergebnisse bereitstellen, z.B. deren
5 | zeitlichen Verlauf darstellen, Testergebnisse in einer webbasierten Oberfläche
6 | anzeigen, Fehlschläge verfolgen usw.
7 |
8 |
9 |
10 | Um diese Funktion zu verwenden, richten Sie Ihren Build-Prozess zunächst so
11 | ein, daß Tests ausgeführt werden. Dann geben Sie den Pfad zu den JUnit-XML-Dateien
12 | in der Ant glob-Syntax,
13 | an, z.B. **/build/test-reports/*.xml. Stellen Sie sicher, daß der Pfad
14 | ausschließlich auf Testergebnisdateien im JUnit-XML-Format zutrifft.
15 |
16 |
17 |
18 | Sobald ein paar Builds mit Tests gelaufen sind, sollten Sie Auswertungen wie
19 | diese sehen.
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help_fr.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins comprend le format XML des rapports de test JUnit (qui est le
3 | même pour ceux de TestNG).
4 | Quand cette option est configurée, Jenkins peut fournir des informations
5 | utiles sur les résultats des tests, tels que les tendances historiques
6 | sur les résultats des tests, une interface web pour visualiser les rapports
7 | de test, tracer les échecs, etc.
8 |
9 |
10 | Pour utiliser cette fonctionnalité, tout d'abord configurez votre build
11 | pour lancer des tests, puis spéficiez le chemin vers les fichiers XML
12 | JUnit en utilisant
13 |
14 | la syntaxe classique de Ant, par exemple
15 | **/build/test-reports/*.xml.
16 | Assurez-vous de ne pas inclure des fichiers qui ne contiennent pas de
17 | rapports dans ce pattern.
18 |
19 |
20 | Une fois que des builds produisent des résultats de test, vous devriez
21 | commencer à voir quelque chose
22 | comme ça.
23 |
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help_ja.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkinsは、JUnitのテストレポートのXML形式(TestNGも使用しています)を理解していますので、
3 | このオプションを設定すると、テスト結果の履歴、
4 | Web UIによるテストレポートの参照および失敗の追跡など、テスト結果に関する有益な情報を提供することができます。
5 |
6 |
7 | この機能を使用するには、最初にテストが起動するようにビルドを設定します。
8 | そして、 JUnitのXMLファイルのパスを
9 | Antのglobパターンで
10 | 指定します。このパターンにレポートでないファイルを含めないようにします。
11 | 例: **/build/test-reports/*.xml
12 |
13 |
14 | テストを起動するビルドを数回実行すると、
15 | このようなグラフが表示されます。
16 |
17 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help_nl.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins herkent het JUnit testrapport XML-formaat. Ditzelfde formaat word bvb. ook door TestNG
3 | gebruikt.
4 | Indien U deze optie configureert, kan Jenkins nuttige informatie over uw testresultaten tonen.
5 | Deze informatie omvat historische trends, een web-gebaseerde interface voor de testrapporten,
6 | het volgen van gefaalde testen, ...
7 |
8 |
9 | Om deze functionaliteit te gebruiken, dient U er vooreerst voor te zorgen dat uw
10 | bouwconfiguratie voorzien is op het starten van uw testen. Vervolgens geeft U het
11 | pad naar de Junit XML bestanden, volgens de
12 | de Ant glob syntax op. Bvb. **/build/test-reports/*.xml. Let erop
13 | dat U geen bestanden selecteert die geen rapport bevatten.
14 |
15 |
16 | Van zodra er enkele bouwpogingen met testresultaten beschikbaar zijn, zou je iets
17 | gelijkaardigs aan het volgende moeten zien.
18 |
19 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help_pt_BR.html:
--------------------------------------------------------------------------------
1 |
2 | O Jenkins entende o formato XML de relatório de teste do JUnit (que também é usado pelo TestNG).
3 | Quando esta opção é configurada, o Jenkins pode fornecer informações úteis sobre os resultados dos testes,
4 | tal como tendências de resultado de teste histórico, uma interface web para visualizar relatórios de teste, rastreamento de falhas,
5 | e assim por diante.
6 |
7 |
8 | Usar esta característica, primeiro configure sua construção para executar os testes, então
9 | especifique o caminho para os arquivos XML do JUnit XML
10 | na sintaxe do glóbulo do Ant ,
11 | tal como **/build/test-reports/*.xml. Tenha certeza de não incluir nenhum arquivo que
12 | não seja de relatório neste padrão.
13 |
14 |
15 | Um vez que exista algumas construções executando com resultados de teste, você começará a ver
16 | algo como isto.
17 |
18 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help_ru.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins понимает XML формат отчетов JUnit (который также используется TestNG).
3 | Когда эта опция настроена, Jenkins может показывать полезную информацию о
4 | результатах тестирования, такую как графики результатов тестов в историческом аспекте,
5 | позволит посмотреть отчеты в браузере, поможет отследить ошибки и т.д.
6 |
7 | Чтобы использовать эту функцию, прежде всего укажите вашему процессу сборки
8 | запускать тесты, затем укажите путь к файлам отчетов JUnit в виде
9 | синтаксиса Ant,
10 | например, **/build/test-reports/*.xml. Проверьте, что посторонние файлы
11 | не попадают в этот шаблон.
12 |
13 | После того как выполнится несколько сборок с результатами тестов, вы увидите
14 | что-то вроде этого.
15 |
16 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/help_zh_TW.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins 認得 JUnit 測試報告 XML 格式 (TestNG 也是用一樣格式)。
3 | 設定這個選項後,Jenkins 便能提供測試結果的有用資訊,例如: 歷次測試結果趨勢、
4 | 能查看測試報表的網頁介面、追蹤失敗案例...。
5 |
6 |
7 | 要使用這個功能,請先讓您的建置會跑測試,
8 | 再使用Ant 檔名樣式語法
9 | 指定 JUnit XML 檔的路徑,例如 **/build/test-reports/*.xml
。
10 | 請注意該樣式不能包含不是報告的檔案。您可以設定多個檔名樣式,樣式之間請用半形逗號隔開。
11 |
12 |
13 | 有幾次建置都有測試結果後,
14 | 您應該就能看到這樣的東西。
15 |
16 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/Messages_de.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/junit/Messages_de.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/Messages_es.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/junit/Messages_es.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/Messages_fr.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/junit/Messages_fr.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-allowEmptyResults.html:
--------------------------------------------------------------------------------
1 |
2 | If checked, the default behavior of failing a build on missing test result files
3 | or empty test results is changed to not affect the status of the build.
4 | Please note that this setting make it harder to spot misconfigured jobs or
5 | build failures where the test tool does not exit with an error code when
6 | not producing test report files.
7 |
8 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-checksName.html:
--------------------------------------------------------------------------------
1 |
2 | If provided, and publishing checks enabled, the plugin will use this name when publishing results to corresponding
3 | SCM hosting platforms. If not, a default including the current stage / branch names will be used.
4 |
5 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-healthScaleFactor.html:
--------------------------------------------------------------------------------
1 |
2 | The amplification factor to apply to test failures when computing the test result contribution to the build health
3 | score.
4 |
5 | The default factor is
1.0
6 |
7 | - A factor of
0.0
will disable the test result contribution to build health score.
8 | - A factor of
0.1
means that 10% of tests failing will score 99% health
9 | - A factor of
0.5
means that 10% of tests failing will score 95% health
10 | - A factor of
1.0
means that 10% of tests failing will score 90% health
11 | - A factor of
2.0
means that 10% of tests failing will score 80% health
12 | - A factor of
2.5
means that 10% of tests failing will score 75% health
13 | - A factor of
5.0
means that 10% of tests failing will score 50% health
14 | - A factor of
10.0
means that 10% of tests failing will score 0% health
15 |
16 | The factor is persisted with the build results, so changes will only be reflected in new builds.
17 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-healthScaleFactor_ja.html:
--------------------------------------------------------------------------------
1 |
2 | 空模様(ビルドの状態)へのテスト結果の影響を算出する際の失敗したテストに適用する倍率です。
3 |
4 | デフォルトの倍率は
1.0
です。
5 |
6 | - 倍率
0.0
の場合、空模様の算出にテスト結果は使用しません。
7 | - 倍率
0.1
の場合、テストの10%が失敗すると空模様は99%になります。
8 | - 倍率
0.5
の場合、テストの10%が失敗すると空模様は95%になります。
9 | - 倍率
1.0
の場合、テストの10%が失敗すると空模様は90%になります。
10 | - 倍率
2.0
の場合、テストの10%が失敗すると空模様は80%になります。
11 | - 倍率
2.5
の場合、テストの10%が失敗すると空模様は750%になります。
12 | - 倍率
5.0
の場合、テストの10%が失敗すると空模様は50%になります。
13 | - 倍率
10.0
の場合、テストの10%が失敗すると空模様は0%になります。
14 |
15 | 倍率はビルドごとに保存されるので、変更は新規のビルドから反映されます。
16 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-keepLongStdio.html:
--------------------------------------------------------------------------------
1 |
2 | If checked, any standard output or error from a test suite will be retained
3 | in the test results after the build completes. (This refers only to additional
4 | messages printed to console, not to a failure stack trace.) Such output is
5 | always kept if the test failed, but by default lengthy output from passing
6 | tests is truncated to save space. Check this option if you need to see every
7 | log message from even passing tests, but beware that Jenkins's memory consumption
8 | can substantially increase as a result, even if you never look at the test results!
9 |
10 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-keepLongStdio_de.html:
--------------------------------------------------------------------------------
1 |
2 | Falls angewählt, werden alle Ausgaben eines Tests als Ergebnis aufbewahrt
3 | nachdem der Build abgeschlossen wurde. (Dies bezieht sich nur auf zusätzliche
4 | Meldungen, die an die Konsole ausgegeben werden, und nicht auf Stracktraces
5 | bei Fehlschlägen.) Solche Ausgaben werden immer aufbewahrt, falls ein Test
6 | fehlschlägt, werden jedoch normalerweise bei erfolgreichen Tests gekürzt,
7 | um Speicherplatz zu sparen. Wählen Sie diese Option, falls Sie alle Log-Ausgaben
8 | von allen erfolgreichen Tests benötigen. Seien Sie sich jedoch bewusst, dass damit
9 | Jenkins Speicherverbrauch anwachsen kann, auch wenn Sie sich die Testergebnisse
10 | nie anschauen!
11 |
12 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-keepLongStdio_ja.html:
--------------------------------------------------------------------------------
1 |
2 | ビルド完了後のテスト結果に、テスト実行時の標準/エラー出力をそのまま保持します
3 | (テスト失敗時のスタックトレースのことではなく、コンソールに出力される付加的なメッセージのことです)。
4 | 標準/エラー出力は、テスト失敗時には常に保持しますが、テストが成功した場合には冗長な出力を切り捨ててディスク容量を節約します。
5 | 成功したテストのログメッセージをすべて参照する必要があるなら、このオプションをチェックしてください。
6 | ただし、テスト結果を参照することがなくても、Jenkinsのメモリ使用量が相当増加することに注意してください。
7 |
8 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-keepLongStdio_zh_TW.html:
--------------------------------------------------------------------------------
1 |
2 | 選用後,建置結束後,所有測試套件的標準輸出及標準錯誤內容都會被保留在測試結果中
3 | (只限印到主控台的額外訊息,不包括錯誤堆疊追蹤)。
4 | 如果測試失敗,無論如何都會將這類輸出結果保留下來; 通過的測試中,預設會將太長的輸出結果截掉,節省空間。
5 | 要是您連通過案例在內的全部訊息都想看到,就可以啟用這個選項。
6 | 但要小心,即使您連一次都沒看過那些測試結果,Jenkins 的記憶體用量也可能會大增!
7 |
8 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-skipMarkingBuildUnstable.html:
--------------------------------------------------------------------------------
1 |
2 | If this option is unchecked, then the plugin will mark the build as unstable when it finds at least 1 test failure.
3 | If this option is checked, then the build will still be successful even if there are test failures reported.
4 | In any case, the corresponding pipeline node (and stage) will be marked as unstable in case of test failure.
5 |
6 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help-skipPublishingChecks.html:
--------------------------------------------------------------------------------
1 |
2 | If this option is unchecked, then the plugin automatically publishes the test results to corresponding SCM hosting platforms.
3 | For example, if you are using this feature for a GitHub organization project, the warnings will be published to
4 | GitHub through the Checks API. If this operation slows down your build, or you don't want to publish the warnings to
5 | SCM platforms, you can use this option to deactivate this feature.
6 |
7 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins understands the JUnit test report XML format (which is also used by TestNG).
3 | When this option is configured, Jenkins can provide useful information about test results,
4 | such as historical test result trends, a web UI for viewing test reports, tracking failures,
5 | and so on.
6 |
7 |
8 | To use this feature, first set up your build to run tests, then
9 | specify the path to JUnit XML files in the
10 | Ant glob syntax,
11 | such as **/build/test-reports/*.xml. Be sure not to include any non-report
12 | files into this pattern. You can specify multiple patterns of files separated by commas.
13 |
14 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help_de.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins unterstützt das JUnit-XML-Format für Testergebnisse (das auch von
3 | TestNG verwendet wird). Wenn diese Option konfiguriert ist, kann Jenkins
4 | nützliche Auswertungen der Testergebnisse bereitstellen, z.B. deren
5 | zeitlichen Verlauf darstellen, Testergebnisse in einer webbasierten Oberfläche
6 | anzeigen, Fehlschläge verfolgen usw.
7 |
8 |
9 |
10 | Um diese Funktion zu verwenden, richten Sie Ihren Build-Prozess zunächst so
11 | ein, daß Tests ausgeführt werden. Dann geben Sie den Pfad zu den JUnit-XML-Dateien
12 | in der Ant glob-Syntax,
13 | an, z.B. **/build/test-reports/*.xml. Stellen Sie sicher, daß der Pfad
14 | ausschließlich auf Testergebnisdateien im JUnit-XML-Format zutrifft.
15 |
16 |
17 |
18 | Sobald ein paar Builds mit Tests gelaufen sind, sollten Sie Auswertungen wie
19 | diese sehen.
20 |
21 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help_fr.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins comprend le format XML des rapports de test JUnit (qui est le
3 | même pour ceux de TestNG).
4 | Quand cette option est configurée, Jenkins peut fournir des informations
5 | utiles sur les résultats des tests, tels que les tendances historiques
6 | sur les résultats des tests, une interface web pour visualiser les rapports
7 | de test, tracer les échecs, etc.
8 |
9 |
10 | Pour utiliser cette fonctionnalité, tout d'abord configurez votre build
11 | pour lancer des tests, puis spéficiez le chemin vers les fichiers XML
12 | JUnit en utilisant
13 |
14 | la syntaxe classique de Ant, par exemple
15 | **/build/test-reports/*.xml.
16 | Assurez-vous de ne pas inclure des fichiers qui ne contiennent pas de
17 | rapports dans ce pattern.
18 |
19 |
20 | Une fois que des builds produisent des résultats de test, vous devriez
21 | commencer à voir quelque chose
22 | comme ça.
23 |
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help_ja.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkinsは、JUnitのテストレポートのXML形式(TestNGも使用しています)を理解していますので、
3 | このオプションを設定すると、テスト結果の履歴、
4 | Web UIによるテストレポートの参照および失敗の追跡など、テスト結果に関する有益な情報を提供することができます。
5 |
6 |
7 | この機能を使用するには、最初にテストが起動するようにビルドを設定します。
8 | そして、 JUnitのXMLファイルのパスを
9 | Antのglobパターンで
10 | 指定します。このパターンにレポートでないファイルを含めないようにします。
11 | 例: **/build/test-reports/*.xml
12 |
13 |
14 | テストを起動するビルドを数回実行すると、
15 | このようなグラフが表示されます。
16 |
17 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help_nl.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins herkent het JUnit testrapport XML-formaat. Ditzelfde formaat word bvb. ook door TestNG
3 | gebruikt.
4 | Indien U deze optie configureert, kan Jenkins nuttige informatie over uw testresultaten tonen.
5 | Deze informatie omvat historische trends, een web-gebaseerde interface voor de testrapporten,
6 | het volgen van gefaalde testen, ...
7 |
8 |
9 | Om deze functionaliteit te gebruiken, dient U er vooreerst voor te zorgen dat uw
10 | bouwconfiguratie voorzien is op het starten van uw testen. Vervolgens geeft U het
11 | pad naar de Junit XML bestanden, volgens de
12 | de Ant glob syntax op. Bvb. **/build/test-reports/*.xml. Let erop
13 | dat U geen bestanden selecteert die geen rapport bevatten.
14 |
15 |
16 | Van zodra er enkele bouwpogingen met testresultaten beschikbaar zijn, zou je iets
17 | gelijkaardigs aan het volgende moeten zien.
18 |
19 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help_pt_BR.html:
--------------------------------------------------------------------------------
1 |
2 | O Jenkins entende o formato XML de relatório de teste do JUnit (que também é usado pelo TestNG).
3 | Quando esta opção é configurada, o Jenkins pode fornecer informações úteis sobre os resultados dos testes,
4 | tal como tendências de resultado de teste histórico, uma interface web para visualizar relatórios de teste, rastreamento de falhas,
5 | e assim por diante.
6 |
7 |
8 | Usar esta característica, primeiro configure sua construção para executar os testes, então
9 | especifique o caminho para os arquivos XML do JUnit XML
10 | na sintaxe do glóbulo do Ant ,
11 | tal como **/build/test-reports/*.xml. Tenha certeza de não incluir nenhum arquivo que
12 | não seja de relatório neste padrão.
13 |
14 |
15 | Um vez que exista algumas construções executando com resultados de teste, você começará a ver
16 | algo como isto.
17 |
18 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help_ru.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins понимает XML формат отчетов JUnit (который также используется TestNG).
3 | Когда эта опция настроена, Jenkins может показывать полезную информацию о
4 | результатах тестирования, такую как графики результатов тестов в историческом аспекте,
5 | позволит посмотреть отчеты в браузере, поможет отследить ошибки и т.д.
6 |
7 | Чтобы использовать эту функцию, прежде всего укажите вашему процессу сборки
8 | запускать тесты, затем укажите путь к файлам отчетов JUnit в виде
9 | синтаксиса Ant,
10 | например, **/build/test-reports/*.xml. Проверьте, что посторонние файлы
11 | не попадают в этот шаблон.
12 |
13 | После того как выполнится несколько сборок с результатами тестов, вы увидите
14 | что-то вроде этого.
15 |
16 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/junit/pipeline/JUnitResultsStep/help_zh_TW.html:
--------------------------------------------------------------------------------
1 |
2 | Jenkins 認得 JUnit 測試報告 XML 格式 (TestNG 也是用一樣格式)。
3 | 設定這個選項後,Jenkins 便能提供測試結果的有用資訊,例如: 歷次測試結果趨勢、
4 | 能查看測試報表的網頁介面、追蹤失敗案例...。
5 |
6 |
7 | 要使用這個功能,請先讓您的建置會跑測試,
8 | 再使用Ant 檔名樣式語法
9 | 指定 JUnit XML 檔的路徑,例如 **/build/test-reports/*.xml
。
10 | 請注意該樣式不能包含不是報告的檔案。您可以設定多個檔名樣式,樣式之間請用半形逗號隔開。
11 |
12 |
13 | 有幾次建置都有測試結果後,
14 | 您應該就能看到這樣的東西。
15 |
16 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_bg.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Show\ all\ failed\ tests=\u041F\u043E\u043A\u0430\u0436\u0438 \u0432\u0441\u0438\u0447\u043A\u0438 \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438 \u0442\u0435\u0441\u0442\u043E\u0432\u0435
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_da.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=Vis alle fejlede test
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_de.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=Zeige alle fehlgeschlagenen Tests
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_es.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=Mostrar todos los test que fallaron
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_fr.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_fr.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_he.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Show\ all\ failed\ tests=\u05D4\u05E6\u05D2 \u05D0\u05EA \u05DB\u05DC \u05D4\u05D1\u05D3\u05D9\u05E7\u05D5\u05EA \u05E9\u05E0\u05DB\u05E9\u05DC\u05D5
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_hi_IN.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Show\ all\ failed\ tests=\u0938\u093E\u0930\u0947 \u0935\u093F\u092B\u0932 \u092A\u0930\u093F\u0915\u094D\u0937\u0923
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ko.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=\uBAA8\uB4E0 \uC2E4\uD328\uD55C \uD14C\uC2A4\uD2B8 \uC5F4\uB78C
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_lv.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Show\ all\ failed\ tests=R\u0101d\u012Bt visus neveiksm\u012Bgos testus
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_pl.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=Poka\u017C wszystkie testy zako\u0144czone niepowodzeniem
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_sk.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=Uk\u00E1za\u0165 v\u0161etky ne\u00FAspe\u0161n\u00E9 testy
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_sv_SE.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=Visa alla fallerande tester
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_uk.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Show\ all\ failed\ tests=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u0432\u0441\u0456 \u043D\u0435\u0432\u0434\u0430\u043B\u0456 \u0442\u0435\u0441\u0442\u0438
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_CN.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Show\ all\ failed\ tests=\u663E\u793A\u5168\u90E8\u5931\u8D25\u5355\u5143\u6D4B\u8BD5
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_zh_TW.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Show\ all\ failed\ tests=\u986F\u793A\u6240\u6709\u5931\u6557\u6E2C\u8A66
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_de.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_de.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_es.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_es.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_fr.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_fr.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_lv.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Drill\ Down=Izpild\u012Btie
4 | Fail=Izg\u0101zu\u0161ies
5 | Fingerprinting\ not\ enabled\ on\ this\ build.\ Test\ aggregation\ requires\ fingerprinting.=Pirkstu Nospiedumi nav iesp\u0113joti \u0161im b\u016Bv\u0113jumam. Testu agreg\u0101cijai vajag pirkstu nospiedumus.
6 | Test=Tests
7 | Total=Kop\u0101
8 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultAction/index_ru.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | Fail=\u041E\u0448\u0438\u0431\u043A\u0438
4 | Test=\u0422\u0435\u0441\u0442\u044B
5 | Total=\u0412\u0441\u0435\u0433\u043E
6 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultProjectAction/jobMain_de.properties:
--------------------------------------------------------------------------------
1 | Latest\ Aggregated\ Test\ Result=Letzte zusammengefasste Testergebnisse
2 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultProjectAction/jobMain_es.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultProjectAction/jobMain_es.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultProjectAction/jobMain_ja.properties:
--------------------------------------------------------------------------------
1 | Latest\ Aggregated\ Test\ Result=\u6700\u65b0\u306e\u96c6\u7d04\u3055\u308c\u305f\u30c6\u30b9\u30c8\u7d50\u679c
2 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/TestResultProjectAction/jobMain_zh_TW.properties:
--------------------------------------------------------------------------------
1 | Latest\ Aggregated\ Test\ Result=\u6700\u65b0\u5f59\u7e3d\u6e2c\u8a66\u7d50\u679c
2 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_es.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_es.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_fr.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_fr.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_sv_SE.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | Jobs\ to\ aggregate=Jobb att aggregera
24 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate.html:
--------------------------------------------------------------------------------
1 |
2 | When checked, Jenkins simply aggregates tests from
3 | all the transitive downstream jobs of this project. This is convenient
4 | as you don't have to individually list them and keep them up to date
5 | as you add/remove jobs. This normally works just fine, as your test
6 | jobs are normally set up as downstream jobs of the build job.
7 |
8 |
9 | If for some reasons the auto aggregation doesn't work, you can always
10 | manually specify a list of jobs to be aggregated.
11 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate_de.html:
--------------------------------------------------------------------------------
1 |
2 | Wenn angewählt, fasst Jenkins die Testergebnisse von allen transitiv
3 | nachgelagerten Jobs dieses Projektes zusammen. Dies ist sehr bequem, da Sie
4 | in diesem Fall nicht alle Jobs einzeln hinzufügen und aktuell halten müssen.
5 | Die automatische Aggregation funktioniert in der Regel problemlos, wenn Sie
6 | Ihre Tests als nachgelagerte Jobs des eigentlichen Build-Jobs einrichten.
7 |
8 | Sollte aus irgendwelchen Gründen die automatische Aggregation nicht
9 | funktionieren, können Sie immer auch eine manuelle Liste aller Test-Jobs
10 | angeben.
11 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate_fr.html:
--------------------------------------------------------------------------------
1 |
2 | Quand cette case est cochée, Jenkins aggrège simplement les tests des
3 | jobs transitifs en aval pour ce projet. Cela est commode, car nous n'avez
4 | pas à les lister individuellement et garder cette liste à jour quand vous
5 | ajoutez ou supprimez des jobs. Généralement, cela suffit, du moment que vos
6 | jobs de test sont configurés comme des jobs en aval du job de build principal.
7 |
8 |
9 | Si par extraordinaire l'aggrégation automatique ne marche pas, vous pouvez
10 | toujours spéficier manuellement une liste de jobs à aggréger.
11 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate_ja.html:
--------------------------------------------------------------------------------
1 |
2 | チェックすると、このプロジェクト下流のジョブをすべて集約します。
3 | 個々に集約するプロジェクトを指定したり、ジョブの追加・削除のたびに維持する必要がないので便利です。
4 | これは、テストのジョブがこのジョブの下流のジョブとして設定していれば、通常正常に動作します。
5 |
6 |
7 | 何らかの理由で自動的に集約できない場合は、集約するジョブのリストを手動で設定することができます。
8 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate_nl.html:
--------------------------------------------------------------------------------
1 |
2 | Indien aangevinkt, zal Jenkins de testresultaten van de transitieve onderliggende
3 | jobs van dit project samenvoegen. Dit is handig aangezien je de jobs niet
4 | dient op te lijsten noch de lijst te actualizeren wanneer job toegevoegd of
5 | verwijderd worden. Over het algemeen werkt dit perfect, aangezien test jobs
6 | typisch als onderliggende jobs van uw huidige job gedefiniëerd worden.
7 |
8 | Indien het automatisch samenvoegen van testresultaten in uw situatie niet werkt,
9 | kun je altijd manueel de lijst van samen te voegen jobs opgeven.
10 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate_pt_BR.html:
--------------------------------------------------------------------------------
1 | div>
2 | Quando marcado, o Jenkins simplesmente agrega os testes de
3 | todas as tarefas filhas transitivas deste projeto. Isto é conveniente
4 | quando você não tem que listá-las individualmente até a data
5 | que você adicionou/removeu as tarefas. Isto normalmente funciona bem, como suas
6 | tarefas de teste são normalmente configuradas como tarefas filhas da tarefa de construção.
7 |
8 |
9 | Se por alguma razão a auto agregação não funcionar, você pode sempre
10 | especificar manualmente uma lista de tarefas para serem agregadas.
11 |
12 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate_tr.html:
--------------------------------------------------------------------------------
1 |
2 | When checked, Jenkins simply aggregates tests from
3 | all the transitive downstream jobs of this project. This is convenient
4 | as you don't have to individually list them and keep them up to date
5 | as you add/remove jobs. This normally works just fine, as your test
6 | jobs are normally set up as downstream jobs of the build job.
7 |
8 |
9 | If for some reasons the auto aggregation doesn't work, you can always
10 | manually specify a list of jobs to be aggregated.
11 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-auto-aggregate_zh_TW.html:
--------------------------------------------------------------------------------
1 |
2 | 選用後,Jenkins 會簡單彙總所有下游專案的測試。
3 | 方便您新增或移除作業時,不用一一設定測試專案清單,並維護清單的正確性。
4 | 您只需要把測試作業設定成建置作業的下游就好。
5 |
6 |
7 | 如果自動彙總不適用,您也可以手動指定要彙總的專案清單。
8 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list.html:
--------------------------------------------------------------------------------
1 |
2 | Specify a list of job names manually here. Multiple names can be separated by
3 | comma, like "foo, bar"
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list_de.html:
--------------------------------------------------------------------------------
1 |
2 | Geben Sie eine Liste von Jobnamen an. Mehrere Namen können mit einem Komma
3 | getrennt werden, z.B. "foo, bar".
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list_fr.html:
--------------------------------------------------------------------------------
1 |
2 | Indiquez ici manuellement la liste des jobs. De multiples noms peuvent être
3 | séparés par une virgule, par exemple "foo, bar".
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list_ja.html:
--------------------------------------------------------------------------------
1 |
2 | ジョブ名のリストを指定してください。ジョブ名はカンマで区切ります(例 "foo, bar")。
3 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list_nl.html:
--------------------------------------------------------------------------------
1 |
2 | Hier kunt u manueel een lijst van jobs opgeven. Meerder namen dienen door een
3 | komma gescheiden te worden, vb. "foo, bar".
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list_pt_BR.html:
--------------------------------------------------------------------------------
1 |
2 | Especifique uma lista de nomes de tarefas manualmente aqui. Múltiplos nomes podem ser separados
3 | por vírgula, como "foo, bar"
4 |
5 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list_tr.html:
--------------------------------------------------------------------------------
1 |
2 | Iş listesini manuel olarak belirleyebilirsiniz. Birden fazla isim virgül ile birbirinden
3 | ayrılabilir, örn. "foo, bar"
4 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help-manual-list_zh_TW.html:
--------------------------------------------------------------------------------
1 |
2 | 手動設定專案名稱清單。多個不同的專案可以使用半形 逗號分開,例如 "foo, bar
"。
3 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help.html:
--------------------------------------------------------------------------------
1 |
2 | Because tests often dominates the execution time, a Jenkins best practice
3 | involves splitting test executions into different jobs, possibly in multiple
4 | different jobs.
5 |
6 |
7 | When you do that, setting test aggregation is a convenient way of
8 | collecting all the
9 | test results from such downstream test jobs and display it along with the
10 | build that they are testing. In this way, people can see the overall test
11 | status of the given build quickly.
12 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help_de.html:
--------------------------------------------------------------------------------
1 |
2 | Da die Testausführung in vielen Fällen die Build-Dauer dominiert, ist es
3 | unter Jenkins-Praktikern üblich, die Testausführung in einen separaten Job
4 | auszulagern - eventuell sogar in mehrere Jobs.
5 |
6 | In diesem Szenario erlaubt die "Test-Aggregation" auf bequeme Weise, die
7 | Testergebnisse nachgelagerter Test-Jobs zu sammeln und zusammen mit dem
8 | Build darzustellen, der getestet wurde.
9 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help_fr.html:
--------------------------------------------------------------------------------
1 |
2 | Parce que les tests prennent la majeure partie du temps d'exécution, une
3 | bonne pratique Jenkins consiste à séparer l'exécution des tests dans des
4 | jobs différents, voire de multiples jobs.
5 |
6 |
7 | Si vous faites ainsi, demander l'aggrégation des tests est une manière
8 | pratique de collecter les résultats des tests provenant de jobs en aval
9 | et de les afficher avec le build qu'ils ont testé. De cette façon, les
10 | utilisateurs peuvent voir rapidement le statut général des tests d'un
11 | build donné.
12 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help_ja.html:
--------------------------------------------------------------------------------
1 |
2 | 多くの場合テストが実行時間の大半を占めるので、 できればテストを異なる複数のジョブに分けるのが、
3 | Jenkinsにおけるベストプラクティスの1つです。
4 |
5 |
6 | ベストプラクティスを実践する場合、テスト結果集約の設定は、
7 | 全下流プロジェクトのテスト結果を集約したり、テストしているビルド毎にテスト結果を表示するのに、
8 | 便利な方法です。
9 | こうすると、素早くビルドの状態を見渡すことができます。
10 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help_nl.html:
--------------------------------------------------------------------------------
1 |
2 | Aangezien testen vaak veel tijd in beslag nemen, is het binnen Jenkins een
3 | aangeraden praktijk om uw testen in aparte jobs uit te voeren.
4 |
5 |
6 | Wanneer u uw jobs op die manier opbouwt is het handig om de op deze manier de
7 | testresultaten van de onderliggende jobs te tonen bij de job die ze testen. Op
8 | deze manier kan men snel een algemeen overzicht krijgen van de teststatus van
9 | een bouwpoging.
10 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help_pt_BR.html:
--------------------------------------------------------------------------------
1 |
2 | Por causa dos testes frequentemente dominarem o tempo de execução, uma prática melhor do Jenkins
3 | envolve dividir as execuções de testes em diferentes tarefas, possivelmente em múltiplas
4 | tarefas diferentes.
5 |
6 |
7 | Quando você fizer isto, configurar a agregação de teste é uma forma conveniente de
8 | coletar todos os resultados de testes de tal tarefa de teste filha e
9 | mostrá-la junto a construção que ela está testando. Desta forma, as pessoas podem ver
10 | o estado todo do teste da construção rapidamente.
11 |
12 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help_tr.html:
--------------------------------------------------------------------------------
1 |
2 | Testler, bir yapılandırmanın en uzun süren parçası olabilirler, bunun üstesinden gelebilmek için,
3 | test işleminin birden farklı ise bölünmesi yöntemi önerilir.
4 |
5 |
6 | Bu şekilde çalısırsanız, test kümeleme seçenegi, tüm downstream işlerdeki test sonuçlarını
7 | toparlayarak, üzerinde testleri çalıştırdıkları yapılandırma aracılıgı ile gösterme imkanı saglar.
8 | Bu yöntem ile, yapılandırmanın üzerinde çalışan tüm testleri bir arada gösterilebilirsiniz.
9 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/help_zh_TW.html:
--------------------------------------------------------------------------------
1 |
2 | 通常測試會佔用執行時間的一大半,Jenkins 實務上的最佳用法會建議您把測試獨立成另外的幾項作業。
3 |
4 |
5 | 這麼做之後,設定測試彙總就能方便您從下游的測試作業取得結果,並顯示在被測試的建置中。
6 | 大家都能快速的看到特定建置的全部測試狀態。
7 |
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/Messages_fr.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/hudson/tasks/test/Messages_fr.properties
--------------------------------------------------------------------------------
/src/main/resources/hudson/tasks/test/Messages_it.properties:
--------------------------------------------------------------------------------
1 | Run.Summary.TestFailures={0} {0,choice,0#test failures|1#test failure|1
2 |
3 | Allows JUnit-format test results to be published.
4 |
5 |
--------------------------------------------------------------------------------
/src/main/resources/io/jenkins/plugins/junit/storage/JunitTestResultStorageConfiguration/config.jelly:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/main/resources/io/jenkins/plugins/junit/storage/Messages.properties:
--------------------------------------------------------------------------------
1 | FileJunitTestResultStorage.displayName=Local file system
2 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/blockWrapper.jelly:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | This adds a wrapper allowing adding an ID to a field or group of fields that can be targeted by JavaScript
5 | The wrapper will be a `table` tag before form layout changes are merged: https://github.com/jenkinsci/jenkins/pull/3895,
6 | and a `div` tag after that.
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/taglib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/lib/hudson/test/taglib
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | 1failure=1 failure {0}
24 | multifailures={0} failures {1}
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_ar.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | no\ failures=\u0644\u0627 \u064A\u0648\u062C\u062F \u0641\u0634\u0644
4 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_bg.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | multifailures="{0} \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u043D\u0438 {1}"
4 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_ca.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | no\ failures=Sense errors
4 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_es_AR.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | no\ failures=Sin fallos
4 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_et.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | no\ failures=vigu pole
4 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_fi.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | 1failure=1 ep\u00E4onnistunut {0}
24 | no\ failures=ei virheit\u00E4
25 | no\ tests=ei testej\u00E4
26 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_fr.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/main/resources/lib/hudson/test/test-result_fr.properties
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_he.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | multifailures="{0} \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA {1}"
4 | no\ failures=\u05D0\u05D9\u05DF \u05DB\u05E9\u05DC\u05D5\u05E0\u05D5\u05EA
5 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_hi_IN.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | multifailures="{0} \u0935\u093F\u092B\u0932\u0924\u093E\u090F {1}"
4 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_hu.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | multifailures={0} hiba {1}
4 | no\ failures=hibamentes
5 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_it.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | multifailures="{0} fallimenti {1}"
24 | no\ failures=nessun errore
25 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_ko.properties:
--------------------------------------------------------------------------------
1 | # This file is under the MIT License by authors
2 |
3 | multifailures="{0} \uC2E4\uD328 {1}"
4 | no\ failures=\uC2E4\uD328\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4
5 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_lv.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | multifailures="{0} izg\u0101z\u0161an\u0101s {1}"
24 | no\ failures=nav k\u013C\u016Bmju
25 | no\ tests=testu nav
26 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_nb_NO.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | multifailures="{0} feil {1}"
24 | no\ failures=ingen feil
25 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_ro.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | multifailures="{0} esecuri {1}"
24 | no\ tests=nici un test
25 |
--------------------------------------------------------------------------------
/src/main/resources/lib/hudson/test/test-result_sk.properties:
--------------------------------------------------------------------------------
1 | # The MIT License
2 | #
3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc.
4 | #
5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
6 | # of this software and associated documentation files (the "Software"), to deal
7 | # in the Software without restriction, including without limitation the rights
8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | # copies of the Software, and to permit persons to whom the Software is
10 | # furnished to do so, subject to the following conditions:
11 | #
12 | # The above copyright notice and this permission notice shall be included in
13 | # all copies or substantial portions of the Software.
14 | #
15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | # THE SOFTWARE.
22 |
23 | 1failure=1 ne\u00FAspe\u0161n\u00FD {0}
24 | multifailures=zlyhania {0} {1}
25 | no\ failures=Bez zlyhania
26 |
--------------------------------------------------------------------------------
/src/main/webapp/history/history.css:
--------------------------------------------------------------------------------
1 | .card-chart-carousel {
2 | width: 100%;
3 | min-height: 180px;
4 | min-width: 256px;
5 | display: block;
6 | margin-top: 0px;
7 | }
8 |
9 | .card-chart-carousel-2 {
10 | width: 100%;
11 | min-height: 400px;
12 | min-width: 256px;
13 | display: block;
14 | margin-top: 0px;
15 | }
16 |
17 | .jenkins-table > tbody > tr > td {
18 | vertical-align: middle;
19 | padding: var(--table-padding) 0 var(--table-padding) var(--table-padding);
20 | height: 10px;
21 | font-weight: 0;
22 | }
23 |
24 | .icon-border {
25 | display: none !important
26 | }
27 |
28 | .card-header {
29 | display: none !important
30 | }
31 |
32 | details > summary > * {
33 | display: inline;
34 | }
35 |
36 | .test-result-table-row {
37 | background: transparent !important;
38 | text-align: center;
39 | }
40 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/junit/rot13/Rot13CaseAction.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.junit.rot13;
2 |
3 | public class Rot13CaseAction extends Rot13CipherAction {
4 |
5 | public Rot13CaseAction(String ciphertext) {
6 | super(ciphertext);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/junit/rot13/Rot13CipherAction.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.junit.rot13;
2 |
3 | import hudson.tasks.junit.TestAction;
4 |
5 | public abstract class Rot13CipherAction extends TestAction {
6 |
7 | private final String ciphertext;
8 |
9 | public Rot13CipherAction(String ciphertext) {
10 | this.ciphertext = ciphertext;
11 | }
12 |
13 | @Override
14 | public final String getIconFileName() {
15 | return null;
16 | }
17 |
18 | @Override
19 | public final String getDisplayName() {
20 | return null;
21 | }
22 |
23 | @Override
24 | public String getUrlName() {
25 | return null;
26 | }
27 |
28 | public String getCiphertext() {
29 | return ciphertext;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/junit/rot13/Rot13ClassAction.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.junit.rot13;
2 |
3 | public class Rot13ClassAction extends Rot13CipherAction {
4 |
5 | public Rot13ClassAction(String ciphertext) {
6 | super(ciphertext);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/junit/rot13/Rot13PackageAction.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.junit.rot13;
2 |
3 | public class Rot13PackageAction extends Rot13CipherAction {
4 |
5 | public Rot13PackageAction(String ciphertext) {
6 | super(ciphertext);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/junit/rot13/Rot13TestAction.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.junit.rot13;
2 |
3 | import hudson.tasks.junit.TestAction;
4 |
5 | public class Rot13TestAction extends TestAction {
6 |
7 | public Rot13TestAction() {}
8 |
9 | @Override
10 | public final String getIconFileName() {
11 | return null;
12 | }
13 |
14 | @Override
15 | public final String getDisplayName() {
16 | return null;
17 | }
18 |
19 | @Override
20 | public String getUrlName() {
21 | return null;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/test/helper/AbstractTestResultLink.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.test.helper;
2 |
3 | import static org.hamcrest.MatcherAssert.assertThat;
4 | import static org.hamcrest.Matchers.containsString;
5 |
6 | import org.htmlunit.html.HtmlAnchor;
7 | import org.htmlunit.html.HtmlPage;
8 |
9 | public class AbstractTestResultLink> {
10 | protected HtmlAnchor testResultLink;
11 |
12 | public AbstractTestResultLink(HtmlAnchor testResultLink) {
13 | this.testResultLink = testResultLink;
14 | }
15 |
16 | public String getResultText() {
17 | return testResultLink.getNextSibling().asNormalizedText();
18 | }
19 |
20 | public T assertNoTests() {
21 | assertThat(getResultText(), containsString("no tests"));
22 | return castToConcreteType();
23 | }
24 |
25 | public T assertHasTests() {
26 | // Text is either "(no failures)" or " failure(s)"
27 | assertThat(getResultText(), containsString("failure"));
28 | return castToConcreteType();
29 | }
30 |
31 | public TestResultsPage follow() throws Exception {
32 | return new TestResultsPage((HtmlPage) testResultLink.openLinkInNewWindow());
33 | }
34 |
35 | @SuppressWarnings("unchecked")
36 | private T castToConcreteType() {
37 | return (T) this;
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/test/helper/BuildPage.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.test.helper;
2 |
3 | import java.io.IOException;
4 | import org.htmlunit.html.HtmlPage;
5 | import org.xml.sax.SAXException;
6 |
7 | public class BuildPage extends AbstractPage {
8 |
9 | public BuildPage(HtmlPage htmlPage) {
10 | super(htmlPage);
11 | }
12 |
13 | @Override
14 | protected String getHrefFromTestUrl(String testUrl) {
15 | return testUrl + "/";
16 | }
17 |
18 | public TestResultLink getAggregatedTestReportLink() throws IOException, SAXException {
19 | return new TestResultLink(getTestReportAnchor(AGGREGATED_TEST_REPORT_URL));
20 | }
21 |
22 | public TestResultLink getTestReportLink() throws IOException, SAXException {
23 | return new TestResultLink(getTestReportAnchor(TEST_REPORT_URL));
24 | }
25 |
26 | public void assertNoTestReportLink() {
27 | assertNoLink(TEST_REPORT_URL);
28 | }
29 |
30 | public void assertNoAggregatedTestReportLink() {
31 | assertNoLink(AGGREGATED_TEST_REPORT_URL);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/test/helper/LatestTestResultLink.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.test.helper;
2 |
3 | import static org.hamcrest.MatcherAssert.assertThat;
4 | import static org.hamcrest.Matchers.containsString;
5 |
6 | import org.htmlunit.html.HtmlAnchor;
7 |
8 | public class LatestTestResultLink extends AbstractTestResultLink {
9 |
10 | public static final String LATEST_TEST_RESULT_STRING = "Latest Test Result";
11 | public static final String LATEST_AGGREGATED_TEST_RESULT_STRING = "Latest Aggregated Test Result";
12 |
13 | LatestTestResultLink(HtmlAnchor testResultLink) {
14 | super(testResultLink);
15 | }
16 |
17 | public LatestTestResultLink assertHasLatestTestResultText() {
18 | assertThat(testResultLink.getTextContent(), containsString(LATEST_TEST_RESULT_STRING));
19 | return this;
20 | }
21 |
22 | public LatestTestResultLink assertHasLatestAggregatedTestResultText() {
23 | assertThat(testResultLink.getTextContent(), containsString(LATEST_AGGREGATED_TEST_RESULT_STRING));
24 | return this;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/test/helper/ProjectPage.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.test.helper;
2 |
3 | import java.io.IOException;
4 | import org.htmlunit.html.HtmlPage;
5 | import org.xml.sax.SAXException;
6 |
7 | public class ProjectPage extends AbstractPage {
8 |
9 | public ProjectPage(HtmlPage projectPage) {
10 | super(projectPage);
11 | }
12 |
13 | public LatestTestResultLink getLatestTestReportLink() throws IOException, SAXException {
14 | return new LatestTestResultLink(getTestReportAnchor(TEST_REPORT_URL));
15 | }
16 |
17 | public LatestTestResultLink getLatestAggregatedTestReportLink() throws IOException, SAXException {
18 | return new LatestTestResultLink(getTestReportAnchor(AGGREGATED_TEST_REPORT_URL));
19 | }
20 |
21 | @Override
22 | protected String getHrefFromTestUrl(String testUrl) {
23 | return "lastCompletedBuild/" + testUrl + "/";
24 | }
25 |
26 | public void assertNoTestReportLink() {
27 | assertNoLink(TEST_REPORT_URL);
28 | }
29 |
30 | public void assertNoAggregatedTestReportLink() {
31 | assertNoLink(AGGREGATED_TEST_REPORT_URL);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/test/helper/TestResultLink.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.test.helper;
2 |
3 | import static org.hamcrest.MatcherAssert.assertThat;
4 | import static org.hamcrest.Matchers.containsString;
5 |
6 | import org.htmlunit.html.HtmlAnchor;
7 |
8 | public class TestResultLink extends AbstractTestResultLink {
9 |
10 | public static final String TEST_RESULT_STRING = "Test Result";
11 | public static final String AGGREGATED_TEST_RESULT_STRING = "Aggregated Test Result";
12 |
13 | TestResultLink(HtmlAnchor testResultLink) {
14 | super(testResultLink);
15 | }
16 |
17 | public TestResultLink assertHasTestResultText() {
18 | assertThat(testResultLink.getTextContent(), containsString(TEST_RESULT_STRING));
19 | return this;
20 | }
21 |
22 | public TestResultLink assertHasAggregatedTestResultText() {
23 | assertThat(testResultLink.getTextContent(), containsString(AGGREGATED_TEST_RESULT_STRING));
24 | return this;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/test/helper/TestResultsPage.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.test.helper;
2 |
3 | import org.htmlunit.html.HtmlPage;
4 |
5 | public class TestResultsPage {
6 | protected HtmlPage htmlPage;
7 |
8 | public TestResultsPage(HtmlPage htmlPage) {
9 | this.htmlPage = htmlPage;
10 | }
11 |
12 | public void hasLinkToTest(String testName) {
13 | htmlPage.getAnchorByText(testName);
14 | }
15 |
16 | public void hasLinkToTestResultOfBuild(String projectName, int buildNumber) {
17 | htmlPage.getAnchorByHref("/jenkins/job/" + projectName + "/" + buildNumber + "/testReport/");
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/src/test/java/hudson/tasks/test/helper/WebClientFactory.java:
--------------------------------------------------------------------------------
1 | package hudson.tasks.test.helper;
2 |
3 | import org.htmlunit.NicelyResynchronizingAjaxController;
4 | import org.jvnet.hudson.test.JenkinsRule;
5 |
6 | /**
7 | * Creates a {@link WebClient} with deactivated JS.
8 | *
9 | * @author Ullrich Hafner
10 | */
11 | public class WebClientFactory {
12 | public static JenkinsRule.WebClient createWebClientWithDisabledJavaScript(final JenkinsRule jenkinsRule) {
13 | JenkinsRule.WebClient webClient = jenkinsRule.createWebClient();
14 | webClient.setJavaScriptEnabled(false);
15 | webClient.setAjaxController(new NicelyResynchronizingAjaxController());
16 | webClient.getCookieManager().setCookiesEnabled(false);
17 | webClient.getOptions().setCssEnabled(false);
18 | return webClient;
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/test/java/io/jenkins/plugins/junit/storage/benchmarks/BenchmarkRunner.java:
--------------------------------------------------------------------------------
1 | package io.jenkins.plugins.junit.storage.benchmarks;
2 |
3 | import jenkins.benchmark.jmh.BenchmarkFinder;
4 | import org.junit.jupiter.api.Test;
5 | import org.openjdk.jmh.annotations.Mode;
6 | import org.openjdk.jmh.results.format.ResultFormatType;
7 | import org.openjdk.jmh.runner.Runner;
8 | import org.openjdk.jmh.runner.options.ChainedOptionsBuilder;
9 | import org.openjdk.jmh.runner.options.OptionsBuilder;
10 |
11 | class BenchmarkRunner {
12 |
13 | @Test
14 | void runJmhBenchmarks() throws Exception {
15 | ChainedOptionsBuilder options = new OptionsBuilder()
16 | .mode(Mode.AverageTime)
17 | .forks(2)
18 | .resultFormat(ResultFormatType.JSON)
19 | .result("jmh-report.json");
20 |
21 | // Automatically detect benchmark classes annotated with @JmhBenchmark
22 | new BenchmarkFinder(getClass()).findBenchmarks(options);
23 | new Runner(options.build()).run();
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/HistoryTest.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/test/resources/hudson/tasks/junit/HistoryTest.zip
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-12457/TestSuite_a1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-12457/TestSuite_a2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-12457/TestSuite_b.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-12457/TestSuite_b_duplicate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-12457/TestSuite_b_nonduplicate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-13214/27449.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-13214/27540.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-13214/29734.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-30413.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-41134/TestSuite_first.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-41134/TestSuite_second.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | WARNING: Use a program name that matches the source file name
7 | Category: COBOL Code Review – Naming Conventions
8 | File: /project/PROGRAM.cbl
9 | Line: 2
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-41134/TestSuite_second_dup_first.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | WARNING: Use a program name that matches the source file name
7 | Category: COBOL Code Review – Naming Conventions
8 | File: /project/PROGRAM.cbl
9 | Line: 2
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-48583/TEST-com.sample.test.TestMessage.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-48583/TEST-com.sample.test.TestMessage2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JENKINS-48583/TESTS-TestSuites.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JUnitParserTest.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/test/resources/hudson/tasks/junit/JUnitParserTest.zip
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/JUnitResultArchiverTest/All.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/test/resources/hudson/tasks/junit/JUnitResultArchiverTest/All.zip
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/SKIPPED_MESSAGE/afterSkippedResult.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | java.rmi.ServerException: RuntimeException
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/SKIPPED_MESSAGE/skippedTestResult.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/TEST-null.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | xxx
5 |
6 |
11 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/TestResultLinksTest.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/test/resources/hudson/tasks/junit/TestResultLinksTest.zip
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/TestResultPublishingTest.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/test/resources/hudson/tasks/junit/TestResultPublishingTest.zip
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-494.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | org.junit.ComparisonFailure: expected: [a] but was: [b]
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-6700.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Etc etc
6 |
7 | java.lang.NoClassDefFoundError: gda/device/detector/DAServer
8 | at java.lang.Class.forName0(Native Method)
9 | at java.lang.Class.forName(Class.java:169)
10 | Caused by: java.lang.ClassNotFoundException: gda.device.detector.DAServer
11 | at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
12 | at java.security.AccessController.doPrivileged(Native Method)
13 | at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
14 | at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
15 | at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
16 | at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-bad-duration.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-nested-testsuites.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | java.lang.IllegalStateException: bla bla
10 | at test.Test(Test:35)
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-testsuite-time-attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-time-aggregation.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-time-aggregation2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/junit-report-with-properties.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Config line 1
8 | Config line 2
9 | Config line 3
10 |
11 |
12 |
13 |
14 | org.junit.ComparisonFailure: expected: [a] but was: [b]
15 |
16 |
17 | description of test testCaseA
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/null-output.txt:
--------------------------------------------------------------------------------
1 | foo bar
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/old-reports/junit-report-1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/old-reports/junit-report-2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/pipeline/ageReset-1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | stacktrace
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/pipeline/ageReset-2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/pipeline/junit-report-testTrends-first-1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13CaseAction/tablerow.jelly:
--------------------------------------------------------------------------------
1 | ${it.ciphertext} for case |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13ClassAction/casetableheader.jelly:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13ClassAction/tablerow.jelly:
--------------------------------------------------------------------------------
1 | ${it.ciphertext} for class |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13PackageAction/casetableheader.jelly:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13PackageAction/classtableheader.jelly:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13PackageAction/tablerow.jelly:
--------------------------------------------------------------------------------
1 | ${it.ciphertext} for package |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13TestAction/casetableheader.jelly:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/rot13/Rot13TestAction/packagetableheader.jelly:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/testXxe-oob.xml:
--------------------------------------------------------------------------------
1 | ">
2 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/junit/testXxe-xxe.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | %sp;
6 | %param1;
7 | ]>
8 | &oob;
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/test/AbstractTestResultExtensionTest.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/test/resources/hudson/tasks/test/AbstractTestResultExtensionTest.zip
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/test/AggregatedTestResultPublisherTest.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jenkinsci/junit-plugin/90fdb0e87a3cae5f11d0c150bae072311767a9a8/src/test/resources/hudson/tasks/test/AggregatedTestResultPublisherTest.zip
--------------------------------------------------------------------------------
/src/test/resources/hudson/tasks/test/TrivialTestResult/body_es.properties:
--------------------------------------------------------------------------------
1 | Total=
2 | Loading...=
3 | Age=
4 | All\ Tests=
5 | Fail=
6 | diff=
7 | Skip=
8 | Duration=
9 | Test\ Name=
10 | All\ Failed\ Tests=
11 |
--------------------------------------------------------------------------------
/src/test/resources/io/jenkins/plugins/junit/storage/configuration-as-code-expected.yml:
--------------------------------------------------------------------------------
1 | storage: "file"
2 |
--------------------------------------------------------------------------------
/src/test/resources/io/jenkins/plugins/junit/storage/configuration-as-code.yml:
--------------------------------------------------------------------------------
1 | unclassified:
2 | junitTestResultStorage:
3 | storage: "file"
4 |
--------------------------------------------------------------------------------