Questions tagged [test-suite]

Test Suite: A set of several test cases for a component or system under test, where the post condition of one test is often used as the precondition for the next one.

320 questions
0
votes
2 answers

Running only specific methods in test suite using Junit 5

I have 2 test classes (A,B), both have 3 test methods. I put them into a test suite and want to run only specific methods (example: only the first method in all classes). For this use case in junit4 I had custom runner and this was done by passing…
zaoras
  • 51
  • 5
0
votes
1 answer

Consolidating project sites in Azure DevOps - issue moving test work items

The number of project sites in our organisation grew to a ridiculous level. We've tried to consolidate related projects into one site and have different areas so that projects can have their own board. Where we are encountering a few difficulties…
James
  • 163
  • 1
  • 2
  • 12
0
votes
0 answers

Getting saved 0 shards error when sending espresso test suite class to firebase

when I send my test classes one by one to firebase with the same method, I don't get an error, but when I export test suite to target, i am getting this error "There are no Android tests to run.". Could it be a problem caused by annotations? I'll be…
0
votes
0 answers

Test suite including setup metod

I have trouble running my test case from a unit test suite. The problem is that I am defining driver in a setup-metod and not in the test it self. My code is following the suite: import unittest from pobocky import TestPobocky_D def suite(): …
KDK
  • 57
  • 6
0
votes
1 answer

Problem with setup suite in phpunit 8 and later

I have a package with many tests organized in suites. I want to upgrade phpunit compatibility from 7 to 8 and above, but I have a problem. For each suite I have a setUp method which creates the database and populates it with the data to be used for…
IlBaldo
  • 1
  • 1
0
votes
0 answers

running a class in junit for two time in a sequence

As part of my project, I have two classes one for uninstall and the other for install. for creating the test suit I have to run first uninstall then install and again uninstall. I am using this for my suit, but it is considering it only once i.e it…
0
votes
2 answers

How to test a constructor in a proper way for JUnit?

I am currently writing a Junit testing suite for certain codes. What I am doing is, there is a class called Person, in which its constructor has variables of name, height, and weight. In its constructor, it throws an exception if the number of…
0
votes
2 answers

soapUI groovy script setting test step status to test step with different behavior in script/test suit window

I created a testSuit, and I have some test steps. The objective is to run the test steps one by one, and set the status to OK or to FAILED, for that I get the httpStatus code and set it to FAILED or OK. This part seems to be good. The problem is,…
Tiago Machado
  • 355
  • 7
  • 24
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
1 answer

What is a testCase and a testSuite?

I am working with robotframework and I would like to know the definition of these 2 concepts. Both a TestCase and a TestSuite. I already looked in the documentation page but nothing comes as a definition.
0
votes
0 answers

JUnit 5 (Jupiter) Testcases in eclipse projects not being run

I have an eclipse workspace (version 2019-12, non-maven) with multiple web projects, all containing java code, and some referencing each other. At the end of the reference 'graph' is a project dedicated to contain a test suite, which in turn is…
TreffnonX
  • 2,924
  • 15
  • 23
0
votes
1 answer

AUTOTOOLS : use my own testsuite instead of the default one

I have made a python testsuite to test my project. I have added in Makefile.am the variable: TESTS = ./launcher.sh launcher.sh contains: tests/testsuite.py When I do ./launcher.sh, my testsuite is correctly executed. However, when I do make check,…
0
votes
0 answers

Running python unittests from TestSuite in PyCharm will not order the tests alphabetically, but running the same file in terminal will order them

I am working on writing unit tests, but they needed to run as I added them to the TestSuite. So my problem is when I run the testrunner.py from the PyCharm I get what I need, but if I run the same file from the terminal the tests will be sorted…
0
votes
0 answers

Test Suite Commands cannot be recognized by Google Home device

When using Test Suite for my Google Home instance, the provided command cannot be recognized by Google Home device, it always end with a Google Search result. If using the command in different format, it works correctly. It currently is a blocker…
Fei Deng
  • 3
  • 1
0
votes
1 answer

How do you assign categories to Work Item Types within Azure DevOps 2019 using an Inheritance Process Model?

What I want is to create a work item type under the Test Case category (Microsoft.TestCaseCategory). The reason for this is to create a work item which has the test steps built in as a group already. This way, a new work item can be created in the…