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.

295 questions
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
  • 377
  • 2
  • 3
  • 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,261
  • 15
  • 57
  • 88
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…
asherbar
  • 4,024
  • 4
  • 27
  • 47
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
  • 2,655
  • 3
  • 34
  • 62
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
  • 419
  • 1
  • 8
  • 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
  • 465
  • 9
  • 16
  • 26
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,096
  • 11
  • 76
  • 108
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
  • 465
  • 9
  • 16
  • 26
0
votes
0 answers

Junit Selenium Test Suite

I'm trying to launch "selenium" only once for my test suite but it's not working. Here is what I've done : My file AllTest.java is generating the test suite and I want to launch selenium from here: import junit.framework.Test; import…
daguerrier
  • 25
  • 2
  • 10
0
votes
2 answers

Test Suit, Test Module, Test Block, Test Scenario and Test Cases

Please let me know what is the definition of Test Suit, Test Module, Test Block, Test Scenario and Test Cases, and what is the relation between them? Thanks, Somnath
Somnath Guha
  • 97
  • 2
  • 13
0
votes
2 answers

Running JUnit test suite from inside Eclipse

Historically, I've always written my unit tests like this: public void WidgetTest { @Test public void test_whatever() { // Given... // When... // Then... } } This allows me to right-click my test file in…
IAmYourFaja
  • 50,141
  • 159
  • 435
  • 728
0
votes
0 answers

Grails (JUnit) test suite

Do JUnit test suites work in Grails? I am writing a Groovy/Grails(2.1.2) project using IntelliJ. Is it possible to run Spock tests as a JUnit test suite? I have tried: package com.foo import com.foo.functional.SampleFunctionalSpec import…
0
votes
1 answer

What is the right way to set common context for several TestCases?

I'm using unittest to test my terminal interactive utility. I have 2 test cases with very similar contexts: one tests for correct output and other for correct handling of user commands in interactive mode. Although, both cases mock sys.stdout to…
Michael Pankov
  • 3,271
  • 2
  • 20
  • 30
1 2 3
19
20