Skip to content

Commit

Permalink
Changing the string for on demand test run (#4618)
Browse files Browse the repository at this point in the history
  • Loading branch information
RanjanarMS authored Jun 27, 2017
1 parent 381530d commit bce408c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"loc.group.displayName.executionOptions": "Execution options",
"loc.group.displayName.reportingOptions": "Reporting options",
"loc.input.label.testSelector": "Select tests using",
"loc.input.help.testSelector": "Specify the means to select tests",
"loc.input.help.testSelector": "<ul><li><b>Test assembly: </b>Use this option to specify one or more test assemblies that contain your tests. You can optionally specify a filter criteria to select only specific tests.</li><li><b>Test plan: </b>Use this option to run tests from your test plan that have an automated test method associated with it.</li><li><b>Test run: </b>Use this option when you are setting up an environment to run tests from the Test hub. This option should not be used when running tests in a continuous integration / continuous deployment (CI/CD) pipeline.</li>",
"loc.input.label.testAssemblyVer2": "Test assemblies",
"loc.input.help.testAssemblyVer2": "Run tests from the specified files. The file paths are relative to the search folder. Supports multiple lines of minimatch patterns. [More Information](https://aka.ms/minimatchexamples)",
"loc.input.label.testPlan": "Test plan",
Expand Down Expand Up @@ -114,7 +114,7 @@
"loc.messages.pathToCustomAdaptersContainsNoAdapters": "Path to custom adapters '%s' does not contain any test adapters, provide a valid path.",
"loc.messages.testAssembliesSelector": "Test assemblies",
"loc.messages.testPlanSelector": "Test plan",
"loc.messages.testRunSelector": "Test run (for on-demand runs)",
"loc.messages.testRunIdInvalid": "The test selection is 'Test run (for on-demand runs)', but the test run id '%s' given is invalid",
"loc.messages.testRunIdInput": "Test run Id (for on-demand runs) : '%s'"
"loc.messages.testRunSelector": "Test run",
"loc.messages.testRunIdInvalid": "The test selection is 'Test run', but the test run id '%s' given is invalid",
"loc.messages.testRunIdInput": "Test run Id : '%s'"
}
10 changes: 5 additions & 5 deletions Tasks/VsTest/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
"label": "Select tests using",
"defaultValue": "testAssemblies",
"required": true,
"helpMarkDown": "Specify the means to select tests",
"helpMarkDown": "<ul><li><b>Test assembly: </b>Use this option to specify one or more test assemblies that contain your tests. You can optionally specify a filter criteria to select only specific tests.</li><li><b>Test plan: </b>Use this option to run tests from your test plan that have an automated test method associated with it.</li><li><b>Test run: </b>Use this option when you are setting up an environment to run tests from the Test hub. This option should not be used when running tests in a continuous integration / continuous deployment (CI/CD) pipeline.</li>",
"groupName": "testSelection",
"options": {
"testAssemblies": "Test assemblies",
"testPlan": "Test plan",
"testRun": "Test run (for on-demand runs)"
"testRun": "Test run"
}
},
{
Expand Down Expand Up @@ -401,8 +401,8 @@
"pathToCustomAdaptersContainsNoAdapters": "Path to custom adapters '%s' does not contain any test adapters, provide a valid path.",
"testAssembliesSelector": "Test assemblies",
"testPlanSelector": "Test plan",
"testRunSelector": "Test run (for on-demand runs)",
"testRunIdInvalid": "The test selection is 'Test run (for on-demand runs)', but the test run id '%s' given is invalid",
"testRunIdInput": "Test run Id (for on-demand runs) : '%s'"
"testRunSelector": "Test run",
"testRunIdInvalid": "The test selection is 'Test run', but the test run id '%s' given is invalid",
"testRunIdInput": "Test run Id : '%s'"
}
}
2 changes: 1 addition & 1 deletion Tasks/VsTest/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"options": {
"testAssemblies": "Test assemblies",
"testPlan": "Test plan",
"testRun": "Test run (for on-demand runs)"
"testRun": "Test run"
}
},
{
Expand Down

0 comments on commit bce408c

Please sign in to comment.