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
1 answer

How can i execute more than one script from many files in testsuites using protractor?

I wonder if you can tell me how can i execute more than one script from many files in testsuites using protractor without having the problem of jasmine time out ? Thanks.
Emna Ayadi
  • 2,430
  • 8
  • 37
  • 77
0
votes
1 answer

Call test suite property within the request in SoapUi

all I am using free version of SoapUI. What I have is a test suite with many test cases. In each test case there is a request where I need to specify a date. So I want to create a general script for all cases and just call the result of it in each…
Alyona Kovalyova
  • 109
  • 2
  • 13
0
votes
1 answer

C# TFS API add test cases to Requirement-based suite

I am trying create test cases and add them to existing Requirement-based suite. below is the code i am trying with but i am able to create test cases but not able to add them to Requirement-based suite namespace ConsoleApplication1 { class…
testerBDD
  • 255
  • 3
  • 18
0
votes
2 answers

Grails integration testsuite suite

We have a set of integration test which depend upon same set of static data. Since the amount of data is huge we dont want to set it up per test level. Is it possible to setup data at the start, run group of test and rollback the data at the end of…
Prakash
  • 423
  • 2
  • 5
  • 15
0
votes
0 answers

Sorting test cases of a test suite in order of execution in C# Visual Studio

I have a test suite in Visual Studio 2015 in C#. I want the tests to be sorted in order of their execution. Is there a way to do it ? Currently they are sorted in alphabetical order after execution.
Madhur Maurya
  • 1,016
  • 4
  • 19
  • 42
0
votes
1 answer

In TFS, can you include another test suite in a query-based suite?

In a TFS query-based suite, is it possible to include all test cases contained in another test suite?
whoknows
  • 395
  • 2
  • 4
  • 17
0
votes
2 answers

Execute setup() once workaround causing TestSuit to fail

I have 2 files: xxxxxTest.java [refer this] public class xxxxxTest extends TestCase { // Run setup only once public static Test suite() { TestSetup setup = new TestSetup(new TestSuite(xxxxxTest.class)) { protected void…
zengr
  • 38,346
  • 37
  • 130
  • 192
0
votes
1 answer

TestNG: How to rerun testng suite based on number of rows in Excel file

I have a Testng suite consisting of 3 java classes which are for automating 3 different pages of a mobile application: Class 1 (this is about registration & imports the data from excelsheet into String array. Then the data is entered on page 1 of…
Varun Bali
  • 133
  • 1
  • 2
  • 17
0
votes
1 answer

NoMethodError: undefined method `run' for "unit/TestTestName.rb" when running testsuite in ruby

I want to write a testsuite to run my unit tests in ruby. So far I have come up with: require 'test/unit/ui/console/testrunner' require 'test/unit/testsuite' class RunTests def self.Run(arg) test_suite = Test::Unit::TestSuite.new("All ATP…
amadain
  • 2,724
  • 4
  • 37
  • 58
0
votes
1 answer

TestNG testsuite not running from command line

I need some help running my testng testsuite from command line: Project Structure compiled classes myproject\bin myproject\bin\com\... source classes myproject\test myproject\test\com\... required…
eventhorizon
  • 2,977
  • 8
  • 33
  • 57
0
votes
1 answer

Adding tear down method to junit test suite after loading class dynamically

I load all test dynamically in to a test suite like this: @RunWith(AllTests.class) public final class MyTestSuite { public static TestSuite suite() { TestSuite suite = new TestSuite(); for (Test test :…
user1329339
  • 1,295
  • 1
  • 11
  • 26
0
votes
0 answers

junit 4 all pairwise permutations of test methods

i have a test case that has n test methods, one of the test methods fails when the test case is run. and this failing test method succeeds when run by itself. i would like to dynamically (at run time) create a set of test suites (or test cases), one…
Ray Tayek
  • 9,841
  • 8
  • 50
  • 90
0
votes
0 answers

Export test Cases from MTM (Microsoft Test Manager)

I'm trying to export my test cases from Microsoft Test Manager 2013 and i tried various tools but none is working. I'm getting 2 different errors: 1) Must install microsoft.teamfoundation.build.client version 11.0.0.0 in the GAC 2) Object Reference…
Nicolas Touma
  • 21
  • 1
  • 5
0
votes
2 answers

TestSuite creation for appium test

I am using appium for android hybrid app automation. I have created AppiumTest project inside my application project in android studio. I have created 4 test cases. I am using xml file to create test suite but on execution xml is ignored and all…
Suman
  • 436
  • 4
  • 10
0
votes
1 answer

How to run TestSuit from command line?

I'm using Appium, and I have three classes with Appium tests. I have .xml file which declares a TestSuit and I can run the TestSuit from eclipse without any problem. My question is, how can I run the same TestSuit for Appium tests from the command…
galvan
  • 7,400
  • 7
  • 38
  • 55