The test-suite tag has no wiki summary.
0
votes
0answers
19 views
junit test suite report
I have junit test suite having 8-10 test cases classes .When running the junit suite the report is getting generated but the report contains all method from all test cases classes.It's very difficult ...
0
votes
0answers
19 views
Using Testsuite in Phpunit Causing Error With Lots of Tests
I am using Symfony2 and there are some controllers to test. I am currently working on running all test files with single command.
There are nearly 180 test such as;
...
0
votes
1answer
40 views
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 ...
0
votes
0answers
56 views
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:
...
0
votes
2answers
48 views
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
0
votes
0answers
32 views
TestNG ExpectedException controlled by suite file
We use TestNG suits to run our automated tests. There are test steps that sould pass normally but sometimes they are expected to throw an exception. Consider the "Delete 2nd" test in the following ...
4
votes
1answer
65 views
Need some explanation about Distribution.TestSuite
I’m looking for some examples or well-documented readings that describe how to use the Distribution.TestSuite. The current haddock documentation is quite poor and so is the userguide. I want to write ...
0
votes
1answer
38 views
Android Junit Testing Freezes
I have an android app that I am unit testing. I have 4 test classes each with multiple test methods. I run them all at the same time from a test suite. I ran into a problem on the emulator where the ...
0
votes
2answers
163 views
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...
}
}
...
0
votes
0answers
156 views
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 ...
0
votes
0answers
12 views
Looking for testsuit for js browser site
I am looking for test-suite that is not global.
I tried Mocha and Jasmine but they are global (Mocha binds to window, Jasmine has global enviroment).
I would like it to look that:
result = ...
1
vote
1answer
96 views
PHPUnit: Filter only for one testsuite
In PHPUnit it is a posible to organise the testes in different testsuites:
<phpunit bootstrap="Bootstrap.php">
<testsuites>
<testsuite name="zf2sandbox">
...
1
vote
1answer
86 views
JUnit - Accessing TestResult from TestSuite
My TestSuite is running during the build using ant target.
I would like, in my suite, to access the TestResult and do some actions if the tests succeed or not.
Is there a way to retrieve the object in ...
1
vote
1answer
137 views
parallel test TestCases inside a unittest.testsuite
i am using Python, and Selenium Webdriver. I have a set of testCases wrapped inside a testSuite, and I want them to be run in parallel regardless of their testCase configurations (some of them are to ...
3
votes
1answer
470 views
How do I create Android test suite which only runs specified tests in one or more classes?
Can someone shed som light on how to organize tests in test suites, using JUnit in Android? I find allmost all examples to be non-working, and I'm wondering what it is that I'm not getting.
I've made ...
0
votes
0answers
23 views
Exporting a test suite from topteam using PHP
We have a lot of test cases stored in a windows application called TopTeam.
Has anyone ever done a batch export from this application?
We are trying to do this without resorting to a data entry job:)
...
0
votes
0answers
78 views
phoronix test suite extract results from another system
i'm using phoronix test suite to benchmark various systems.
I have collected results from many systems to my pc and i want to extract results to text format and then compare them.
The option ...
2
votes
1answer
44 views
How to selet a specific Test with python unitest testsuites
I have python unittest code organized as follows:
Maindir
|
|--Dir1
| |
| |-- test_A.py
| |-- test_B.py
| |-- test_C.py
|
|--Dir2
| ...
I assume you get the ...
0
votes
1answer
219 views
Intel 8080 Emulator Tester
I worte an emulator for the Intel 8080, and I want to check if they are correct. Is there a test suite or a way to test each instruction if its correct?
My emulator is written in C.
0
votes
1answer
31 views
How to extract the test method name from a test method in python
I have various python unitttest methods packed as a TestSuite, and one particular test method looks like e.g.
<input.MyTest testMethod=test_simple>
It looks like this is a class (the type of ...
0
votes
1answer
66 views
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 ...
0
votes
1answer
212 views
uncertain behaviour when combining selenium test cases into JUnit test suite
I have a scenario where I have 29 test cases. All the test cases pop-up new firefox windows and run to completion when run independently. However when I combine the test cases(all 29) into a test ...
3
votes
1answer
73 views
Open source test suite for Java List API implementations?
I just wrote a WeakArrayList<E> class, which implements List<E>, with WeakReference<E>s to the elements, and appropriate synchronizations.
I have every reason to believe that a ...
3
votes
1answer
745 views
Maven failsafe plugin does not run testNG XML suite
I'm using maven to run my integration tests which are in a TestNG suite.
When running the suite under eclipse- my test suite runs successfully.
When running "mvn verify" to run my integration tests, I ...
0
votes
1answer
1k views
How do you insert the same random variable into multiple soapui testcase requests?
I may be going about this in the completely wrong way, but how do I pass a dynamic variable to a bunch of requests within the same testsuite in SoapUI?
My first test step is a Groovy script. I need ...
1
vote
3answers
554 views
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 get the tests to run just by running python "normally" but when I select to run a python-unit test it ...
0
votes
1answer
154 views
How to execute code before TestNG for ie. building up the test suite
i am using Selenium2 + TestNG + Maven2 + alot of other stuff.
What I would like to do is to build the testng.xml (xml suite) on-the-fly upon
test execution, because I would read those tests out of HP ...
3
votes
2answers
2k views
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. e.g.
mvn clean install test -Dtest=FastTestSuite ...
0
votes
0answers
448 views
testNG create parent suite file from multiple suite files
The complete scenario of the project is like this,
Root:
--Mod1
-src/test
-src/resources
- testNg.xml
-pom.xml(for Mod1)
--Mod2
-src/test
...
1
vote
1answer
69 views
Test suite for automatic bug finding
For many kinds of hard computational problems e.g. propositional satisfiability, theorem proving, traveling salesman etc., there exists an extensive test suite that can be used for evaluating the ...
1
vote
1answer
243 views
Manually adding test suite to nose
I want to create a test suite manually instead of using test discovery (only in one module, the others should use discovery). I found how I can do this in unittests, but I'm not sure how to transfer ...
0
votes
1answer
112 views
How do I create a Test Suite at runtime
Class A {
@Test
@CustomAnnotation(attrib1 = "foo"; attrib2 = "moo"; attrib3 = "poo")
void methodA(){ }
@Test
@CustomAnnotation(attrib1 = "blahblah"; attrib2 = ...
0
votes
1answer
176 views
Prolog script with test on Unix
I have a prolog script and runs without any problems on Windows with swi-prolog,
but when I run the script on Linux there is a error related to test suite:
ERROR: /home/test_suite.pl:12:
catch/3: ...
-1
votes
4answers
262 views
how i can disable cakephp Test Suite?
do you test this url in your application that writted with cakephp ?
www.yourCakephpApp.com/test
you see a page like this:
http://www.eliteprojects.org/cake/app/webroot/test.php
how i can ...
3
votes
2answers
606 views
How to use HTML TestSuite as well as Test Cases on Selenium RC using IE
I am using Selenium RC in Internet Explorer. I have written some test cases in HTML. How can I write Test Suite in HTML including my test cases in HTML? I want to run the HTML Test Suite using ...
-1
votes
1answer
104 views
Setting Test Suite to Ignore
I have many Test Suites with each one contains many Test Classes. Here is how they look like:
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import ...
1
vote
1answer
104 views
How to listen to Test Suite changes in order to change some configurations
I have many Spring Test classes (defined using @RunWith(SpringJUnit4ClassRunner)) that I want to group in test suites so that I load new configurations once for every suite instead of for every test ...
2
votes
1answer
357 views
How to make/build larger Selenium Test Suites?
I'm building tests for a suite of enterprise-ware. The good advice I had from the author of Test::WWW::Selenium was to build routines of larger functions and then parameterise them. So we have: ...
3
votes
2answers
2k views
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 classes using the following:
@RunWith(Suite.class)
@Suite.SuiteClasses({
Test1.class,
Test2.class, ...
})
...
2
votes
1answer
334 views
How to override JUnit Test Suite default output
I am running Junit Test Runner as TestRunner.run(suite) within a java main method and running that locally which succesfully runs . What I am stuck is that every test suite i run from the comamnd line ...
0
votes
1answer
250 views
phpunit throwing exception when doesn't find file with name of testsuite
I was following Jon´s screencast about Unit Testing with PhpUnit and ZF when I got the exact same error that ratzip described in this question.
As he commented, I also had the same problem even ...
0
votes
4answers
3k views
Executing Selenium HTML Test Suite in Jenkins is not able to launch on firefox
I am trying to integrate Jenkins with Selenium. I have prepared the following command:
java -jar <Full Path of the Selenium RC Jar, including jar file name> \
-htmlSuite *firefox ...
1
vote
1answer
362 views
How to run Junit TestSuites from gradle?
I am trying to migrate from Ant build to Gradle in my project. There are a bunch of test cases (subclasses of junit.framework.TestCase) and few test suites (subclasses of junit.framework.TestSuite). ...
1
vote
1answer
357 views
Custom test suite for django app
I have a pretty complex django app which has following structure.
/myapp
/myapp/obj1/..
/myapp/obj1/views.py
/myapp/obj1/forms.py
/myapp/obj2/..
/myapp/obj2/views.py
/myapp/obj2/forms.py
...
0
votes
1answer
409 views
Shutting down and restarting app in test activities within a Test suite
I'm using Robotium to write test case to an Android app. I have two testing activities. In the first test activity checking log in procedure in the app and then terminate the app.
public static Test ...
2
votes
1answer
421 views
How do you create nested TestSuites in jUnit 4x.?
I'm trying to add jUnit to a large project and am having difficulties nesting test suites. For example:
@RunWith(Suite.class)
@Suite.SuiteClasses({Test2.class, .....})
public class Test1{
}
...
0
votes
3answers
175 views
Prevent execution of JUnit tests or forcing a special execution order of JUnit tests?
Usually every JUnit test should be encapsulated, but I need to test if an encrypted file stored by EncryptorTest can be decrypted by another Java VM instance in DecryptorTest. You can manage this by ...
0
votes
1answer
349 views
JUnit test suite @BeforeClass not running from individual tests
I have a test suite and a number of test in there own class files. These are selenium webdriver tests. Each test needs to start the webdriver before they start. How should this be done?
I can have ...
0
votes
2answers
2k views
Configuration for “SeleniumHQ htmlSuite Run” in Jenkins to run Selenium HTML TestSuite
I want to run my Selenium HTML Test Suite through Jenkins (a continuous integration). The following shows, how the build is configured for the current project:
And here's the console output after ...
2
votes
2answers
726 views
Fitnesse : How to run specific tests across multiple Test suites
We use Fitnesse [FitSharp] and we have a requirement for a single fit test that will call and run individual tests that span multiple suites.
I know we could put it in a batch file and run individual ...
