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

How to create appium TestSuite in Android Studio

I have created test stub using Appium in android studio. Now I want to create test suite so that I can manage my test cases. Could anyone help me how to create test suite for appium test cases? My AppiumTest.java contains public class…
Suman
  • 436
  • 4
  • 10
0
votes
1 answer

How to access variables in a test case class from a test suite runner class

I have an abstract class that extends the JUnit TestCase with related data public abstract class AbstractTestClass extends TestCase { public ArrayList testList; } I then have a test class that extends the abstract classes public…
doblo7
  • 11
  • 7
0
votes
1 answer

Robolectric Testsuits for Gradle

Everytime I run "gradlew test" on terminal in Android Studio, ALL my tests (stored in app\src\androidTest\java\path\to\package") are running. dependencies to compile tests in app/build.gradle are: androidTestCompile…
0
votes
1 answer

SOAPUI - is it possible to use DataSource Loop on multiple test steps?

When creating automatic tests in SOAPUI is it possible to configure a loop which will run more than 1 test steps in a test case? I have a following structure: TestSuite -> TestCase -> Test…
Trillian
  • 33
  • 6
0
votes
1 answer

Which built-in JAR file in Eclipse/RSA deals with creation of Junit Test Suite?

I am unable to find the built in JAR file in Eclipse/RSA that deals with creation of Junit Test Suite: File-> New -> Junit Test Suite We are using RSA 8.0.2 version and with this RSA, currently the Test Suites are created in JUnit3 format by…
0
votes
1 answer

How to set up Selenium 2.x Test Suites in the same Webdriver in Eclipse (JUnit4)

I have been sifting through the answers on stack for a while now and have come across some examples of work that seem to accomplish this or at least come close. Use same web driver throughout selenium suite Before and After Suite execution hook in…
0
votes
1 answer

Test Suites for OpenStack Nova CLI

I am wondering if it is there any Test Suite for OpenStack Nova Command Line Interfaces. I googled it and I found a bunch of Integration Test Suites (Tempest, Torpedo, StackTester, SmokeStack). Unfortunately, none of these Test Suite provides tests…
Giuseppe
  • 447
  • 2
  • 5
  • 14
0
votes
1 answer

Junit4 + Spring - creating a repeatable suit

I would like to create a new unit Suit with repeatable tests for each test class in the suit, i.e. - a suit named SUIT1 with TestClass1 and TestClass2, the suite will execute TestClass1 100 times and TestClass2 50 times for example. I have tried to…
0
votes
1 answer

second test of test suite fails (browser doesn't opens)

I use selenium webdriver with junit. I run my tests in IE with ant in Jenkins. I want to run several test as testsuite. So I have created class TestSuite: @RunWith(Suite.class) @SuiteClasses({ Test1.class, Test2.class, Test3.class }) public…
khris
  • 4,809
  • 21
  • 64
  • 94
0
votes
1 answer

unittest.TestSuite runs previously loaded tests in addition to currently added tests

My code runs tests using the unittest framework. This is the basic idea of what one of my methods looks like: def _RunTestsList(self, lTestsPaths): """ Runs all tests in lTestsPaths with the unittest module """ for…
asherbret
  • 5,439
  • 4
  • 38
  • 58
0
votes
1 answer

How can I create test-suites to run on VisualPHPUnit?

I am using VisualPHPUnit and I am trying to organize my tests into suites (due to the fact that Selenium IDE does not export PHPUnit test suites). I am currently implementing the option of the configuration XML file. Yet,it is very limiting cause I…
Kostas Demiris
  • 3,415
  • 8
  • 47
  • 85
0
votes
1 answer

Dynamically setting input in SOAPUI requests with Groovy

I want to write a groovy script that sets input in requests. It works fine when the groovy is executed within the same testsuite, but I want this script the go thru several testsuites. This is my code, for testing I am getting the 5th testsuite, the…
Andreas Blomqvist
  • 437
  • 1
  • 9
  • 22
0
votes
1 answer

create test suite with test cases independent from each other?

I posted a question in the forum to ask how to make a test suite (with 2 testcases) run consistently without interruption. link to previous post A helpful reply suggested that Instantiate the driver once per class and put testcases into the…
user2061466
  • 485
  • 9
  • 17
  • 27
0
votes
1 answer

Fatal Error when running a JUnit test suite

I'm using a JUnit test suite in order run a bunch of JUnit test cases, and i got no errors and no failures and all the tests run correctly, but i have the following message displayed in the console and i don't know what's the meaning of it: [Fatal…
Muhammed Refaat
  • 8,914
  • 14
  • 83
  • 118
0
votes
1 answer

JUnit4 test case won't continue

I created a test suite with 2 test cases using Selenium IDE. I exported the suite as Java/JUnit4/WebDriver. the first test case allow user to log-in the site, do a member search after the match is found, access the member's profile the second test…
user2061466
  • 485
  • 9
  • 17
  • 27