Questions tagged [test-results]

46 questions
0
votes
1 answer

Overview of Test outcome connected to test suite and tester in Azure Devops

I would like to get a simple overview, preferably some kind of list, of the test results (manual tests) connected to the test suite and who performed the test. The test plan summary in the "Enhanced test suite export" is the closest i have been able…
Andr
  • 1
0
votes
2 answers

Can TestCafe reults be tracked in HP ALM?

HP ALM is my current test management tool and I'm currently planning on using TestCafe for automation. I would like to know if I can have the results from my test runs in TestCafe shown in HP ALM? Is it possible to make an integration or…
0
votes
1 answer

Why does Jenkins multibranch pipeline job page show junit test result for each stage of pipeline which makes count of test incorrect

I am using Jenkins Ver:2.176.3 for declarative multibranch pipeline. I have junit test in my application code base and using maven surefire plugin to run unit test using maven command. Multibranch job page shows 'Test Result' link and 'Test Result…
0
votes
2 answers

How to configure/capture 'failureMessage' to the result file in Jmeter

I have a jmx script which saves the results to a CSV file. I need to see the 'failureMessage' field in the CSV especially when the 'success' column says 'false' as in the below example. But the failureMessage column always appear as blank…
sjkp
  • 35
  • 10
0
votes
1 answer

How to show the test summary during test run

I have some hundreds of tests and running with vstest. After completing the test run for all tests then only getting the .trx file. I wish to show the progress of test run for each test. I would not like to wait for all the test to complete.Once the…
Anil
  • 21
  • 1
  • 6
0
votes
1 answer

Save recording response log in Jmeter

I know how to save the results tree before doing recording in Jmeter. But is there a way to save the results after the recording?? Actually I have recorded a big scrip without knowing this.
0
votes
1 answer

How to configure diff window in python unittest output?

I am testing my application with the inbuilt unittest library (python 3.5) and some of the test cases compare (lists of) dictionaries. When those tests fail the output is not very helpful: First differing element 1: {'emi[1557 chars]al':…
0
votes
1 answer

How to view test results for in-progress tests in the release pipeline view?

According to...: https://learn.microsoft.com/en-us/azure/devops/pipelines/test/review-continuous-test-results-after-build?view=vsts ​...You should be able to view test results for in-progress (automated)tests during the test execution but my test…
0
votes
0 answers

.net core 2.1 Test Result not displaying in TFS 2018

I have .net core 2.1 project build pipeline as shown below. I have 2 simple unit test cases which executed successfully. “.NET Core test” command executes successfully and publishes thereport. 2018-09-06T22:05:41.8494077Z…
Yass
  • 592
  • 1
  • 8
  • 30
0
votes
2 answers

How to automatically delete Test Results in visual studio test controller

I am running coded UI test cases in agent machine through MTM. And for each run the test results gets generated in controller machine as you can see in the screenshot below. As you can see that each run generates above two folders in controller…
0
votes
1 answer

Where could I get the number of existing unit tests

I like to get the number of the unit tests in each build which were running last year. So that I could see if the developers write some new tests. For that, I get a view of the TFS warehouse database and find the view TestResultView which exactly…
0
votes
2 answers

TestNG Custom Reporter include test description instead of name

I want to implement a custom reporter for TestNG xml test results. I currently use JUnitReportReporter. My result xml currently looks like this: testcase name="testSearchForProductAndVerifyFirstFoundItem" time="55.516"…
Flup
  • 35
  • 2
  • 9
0
votes
1 answer

Results are not reflected for a test case when it is linked to a new testsuite in mtm

I have TestCase tc under TestSuite A. Now I have linked the tc to a new testsuite B. TestCase tc under 'A' was run many a times and has good amount test results hirstory. But when I view the same testcase under suite 'B', I don't see any results…
John
  • 21
  • 3
0
votes
1 answer

How to exclude name of ordered test from test results on tfs build?

I have a few ordered tests with some UI tests. Then I have one ordered test which contains other ordered tests: This ordered test (which contains many others ordered tests) is running every night within TFS Build. If some UI tests faile, then names…
SuperMario
  • 21
  • 3
0
votes
0 answers

How to launch the "Run Result Viewer" and open the XML result file programmatically (in c#)

If I can launch the UFT and run a test by means of "QTObjectModelLib", there might be a proper application class or another library for "Run Result Viewer" application around the corner to open the result xml file. In general I want to launch…