Top "Test-suite" questions

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.

Test Suite Run Spring Boot Once

I am trying to create a test suite that runs Spring Boot once at the start of the suite. I …

spring spring-boot test-suite
In TFS, how do I find all Test Cases in a Test Suite with a query (C#)?

With Team Foundation Server, given a WorkItem of type "Test Suite," how can I write a query to select all …

c# tfs testcase test-suite
test suite inside spring context

Is it possible to run test suite with loaded spring context, something like this @RunWith(Suite.class) @SuiteClasses({ Test1.class, …

spring junit spring-test test-suite
How to run Junit TestSuites from gradle?

I am trying to migrate from Ant build to Gradle in my project. There are a bunch of test cases (…

java gradle test-suite junit3
testing multiple folders

I use PHPUnit 3.5.12, netbean 6.9, and git submodules in my project. So my folder architecture looks like that: lib/ lib/submodule1 …

php unit-testing phpunit project-organization test-suite
Instantiate Python unittest.TestCase with arguments

I would like to iterate over a list of items, and run an assertion on each of them. One example …

python-2.7 arguments test-suite python-unittest
Running JUnit test classes from another JUnit test class

I have two classes that I am testing (let's call them ClassA and ClassB). Each has its own JUnit test …

unit-testing junit junit4 test-suite
JUnit 4: how do I create a suite of suites?

Running the junit below raises an exception. import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.…

junit4 test-suite suite
Why use JUnit test suites?

I'm going to be implementing some unit tests using JUnit in some upcoming tasks for work. I have slight experience …

java unit-testing testing junit test-suite
Are test suites considered deprecated in JUnit5?

I am trying to create test suites with JUnit5. After some research I was not able to conclude whether it …

java junit junit5 test-suite