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.

How can I test a PDF document if it is PDF/A compliant?

We write a software that create PDF files. How we can check if the resulting pdf files are PDF/A …

validation pdf test-suite pdfa
JUnit 4 Test Suites

How do I create test suites with JUnit 4? All the documentation I've seen doesn't seem to be working for me. …

java junit test-suite
TestSuite Setup in jUnit 4

I've managed to find out how to make a TestSuite in jUnit 4, but I really miss the v3 possibility of …

java junit installation test-suite
Run Junit Suite using Maven Command

I have multiple Junit test suites (SlowTestSuite, FastTestSuite etc). I would like to run only specific suite using maven command. …

maven maven-2 junit test-suite
Trying to implement python TestSuite

I have two test cases (two different files) that I want to run together in a Test Suite. I can …

python unit-testing regression-testing test-suite python-unittest
Before/After Suite when using Ruby MiniTest

Is there an alternative to RSpec's before(:suite) and after(:suite) in MiniTest? I suspect that a custom test runner …

ruby test-suite minitest
What's the difference between CTS and GTS?

I'm familiar with CTS(Compatibility Test Suite). But recently I came across the term GTS, which as per my understanding …

android compatibility test-suite cts
JUnit4 run all tests in a specific package using a testsuite

Is this possible in JUnit4? In JUnit3, I would do the following: public class MyTestSuite { public static Test suite() throws …

java junit junit4 test-suite
Suites vs Specs Protractor

I have recently picked up a project using Protractor. I am having troubles understand the difference between a suite and …

javascript angularjs testing protractor test-suite
How to programmatically execute a test suite using JUnit4?

I am trying to invoke a JUnit Test suite using the API. I know that you can suite up test …

junit automated-tests junit4 test-suite