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.
Questions tagged [test-suite]
320 questions
0
votes
0 answers
How to create a testsuite for all unit tests from different modules in the project?
My project structure is as below:
module 1
src
test/UTs
module 2
src
test/UTs
module FT
tests/FTs
For FT, we have test suites. Now, how can I create a TestNG suite that has all the unit tests and can be executed at the comfort…

xploreraj
- 3,792
- 12
- 33
- 51
0
votes
0 answers
Generate JUnit report for individual Test case in Java
I am making an framework that internally uses REST Assured. This framework will have the 4 @Test methods for CRUD operations. These methods are called individually by the user. I want the method should generate the JUnit report for each test case…

Gireesh Bhat
- 139
- 1
- 1
- 7
0
votes
2 answers
Flash Builder: Change default suite for unit tests?
What are the steps to change your default suite when running unit tests in Flash Builder 4 with PureMVC?

Even Mien
- 44,393
- 43
- 115
- 119
0
votes
1 answer
How do you organize your TestSuite?
I'm trying to use Junit at office (JVM 1.4): I wrote a lot of class extending TestCase but I didn't write any class extending TestSuite.
The problem is that I don't understand very well what a TestSuite have to testing:
the public contract of a…

alepuzio
- 1,382
- 2
- 28
- 38
0
votes
0 answers
Python unit testing execute main() before test cases
I'm fairly new to unit testing in general and I'm trying to generate unit tests for a script I'm developing in Python. The script is designed to take in a data file and several command line arguments, and then run several functions in order while…

dselgo
- 271
- 3
- 14
0
votes
1 answer
Maven/JUnit - Get older static suite junit technique to work in Maven
I am switching a project from Ant to Maven. I have my unit tests in the correct location, but for whatever reason the maven surefire plugin only sees about 136 (out of 1136 total) of the tests.
When using Ant, we used the older test suite technique…

Tim Reynolds
- 734
- 3
- 9
- 17
0
votes
1 answer
Start two Junit test suites
I have two junit test suites, First one will be AllTestInParallel and implemented it to run in multiple threads. Second one is AllTestsInSequence which is quite slower and I need to run in single thread. Finally I need to start both test suites at…

JagKum
- 183
- 2
- 18
0
votes
0 answers
JUnit 4.11 Repeating TestSuite
i'am trying to achieve, that my testsuite will be executed multiple times.
JUnit 4.10 demonstrate it easiely:
I have two testclasses into my suite:
@RunWith(Suite.class)
@SuiteClasses({ TestClassA.class, TestClassB.class })
public class MyTestSuite…

Roma Kap
- 517
- 1
- 8
- 23
0
votes
1 answer
Citrus test suite
I am using Citrus TestNGCitrusTestDesigner, I have a few classes annotated with @Test. Each class have a few methods. Each method annotated @Test and @CitrusTest. When I am configuring tests that should be executed during mvn clean package…

supertramp
- 169
- 1
- 14
0
votes
0 answers
Set test method order by TestSuite
there are several topics about how test method order could be created, but i have some trouble.
I have simply Junit 4.11 TestClass:
public class ServiceTest {
@BeforeClass
public static void setUp() throws IllegalArgumentException,…

Roma Kap
- 517
- 1
- 8
- 23
0
votes
1 answer
How to do bulk update of fields for test suite in test link?
There is a test suite already created with test summary and test steps in test link. I have to update few fields in each test case. How can i update in bulk instead of doing it one by one by clicking edit option for each test case?

Sunshine
- 11
- 3
0
votes
0 answers
Execute load test on TestSuite in SoapUI
I am using soapUI 4.6.4 version and had some test cases written which i clubbed into a TestSuite. Now i wanted to run loadtest on TestSuite itself i.e all the test cases under Testsuite should be executed repetatively. I can see the loadtest option…

Anand Kadhi
- 1,790
- 4
- 27
- 40
0
votes
1 answer
Suitelet - redirect page to custom transaction form
I am new to Suitelet. I have created button called RMA in sales order form and created custom transaction form called RMA-Closed.
I want to redirect to transaction form when I click the button.
Could anyone help me how to achieve this?

user1934458
- 1
- 2
0
votes
1 answer
SoapUI: Conditional Goto not working with json answer
I'm pretty new to Groovy and SoapUI test suite, and I'm getting an error when I try to execute a Conditional Goto. The thing is, I have a couple of REST services which answer a JSON string, and I want to create a TestSuite in which service B gets…

maxivis
- 1,727
- 3
- 21
- 35
0
votes
1 answer
Dynamically Creating JUnit4 Test Suite from Properties File
The solution I am using to create a JUnit test suite dynamically can be found in this similar question here: How do I Dynamically create a Test Suite in JUnit 4?
The solution I am trying to adapt looks like such:
@RunWith(AllTests.class)
public…

kshah
- 1,667
- 2
- 16
- 24