Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
1k views

Does new JUnit 4.8.1 @Category render test suites almost obsolete?

Given question 'How to run all tests belonging to a certain Category?' and the answer would the following approach be better for test organization? define master test suite that contains all tests ...
5
votes
3answers
160 views

Unit Testing Interfaces in Python

I am currently learning python in preperation for a class over the summer and have gotten started by implementing different types of heaps and priority based data structures. I began to write a unit ...
4
votes
2answers
268 views

I need a number of different full-page DOM samples for my qUnit test suite

I have a small amount of Javascript to test, but it operates on the entire page, for example, finding elements by numbered ids like "#t34". I need to create a handful of different pages to test the ...
4
votes
2answers
119 views

Basics of automated tests?

Till now I've been testing my web (usually written in PHP) as well as desktop applications (normally Java or C#) manually. Now I read somewhere on the net about automated tests. I tried searching to ...
3
votes
2answers
621 views

Before/After Suite when using Ruby MiniTest

Is there an alternative to RSpec's before(:suite) and after(:suite) in MiniTest? I suspect that a custom test runner is in order, however I cannot imagine it is not a common requirement, so somebody ...
3
votes
2answers
226 views

testing multiple folders

I use PHPUnit 3.5.12, netbean 6.9, and git submodules in my project. So my folder architecture looks like that: lib/ lib/submodule1 lib/submodule1/src lib/submodule1/tests lib/submodule2 ...
3
votes
3answers
3k views

How can I test a PDF document if it is PDF/A compliant?

We write a software that create PDF files. How we can check if the resulting pdf files are PDF/A compatibility? Are there any test suite for it available? It will be also nice to know if some other ...
3
votes
7answers
964 views

How can I best write unit test cases for a Parser?

I am writing a parser which generates the 32 bit opcode for each command. For example, for the following statement: set lcl_var = 2 my parser generates the following opcodes: // load immdshort 2 ...
2
votes
2answers
37 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 ...
2
votes
2answers
142 views

JUnit4 run all tests in a specific package using a testsuite

Is this possible in JUnit4? In JUnit3, I would do the following: public class MyTestSuite { public static Test suite() throws Exception { doBeforeActions(); try { TestSuite ...
2
votes
1answer
187 views

Why Netbean ignore PHPUnit testsuite from the XML config?

I've setup netbean to use my config.xml file, and it works well except for the testsuites part that is completly ignored by netbean. It look like netbean try to execute this command: phpunit -c ...
2
votes
1answer
263 views

Test suite for GIF containing images using rarely used features

The specifications (plural, since there are versions 87a and 89a) of the GIF graphics format are easy to find in the internet (for those who don't want to google: ...
2
votes
3answers
1k views

JUnit 4 test suite problems

I have a problem with some JUnit 4 tests that I run with a test suite. If I run the tests individually they work with no problems but when run in a suite most of them, 90% of the test methods, fail ...
2
votes
2answers
882 views

JUnit Test Runner that creates tests just before running them

I use JUnit 3.x TestRunner that intantiates all tests at once before running them. Is there a Test Runner available that would create each test (or at least each test suite's tests) just before ...
2
votes
1answer
458 views

C : POSIX threads library test-suite

I'm working on a thread library which implement user level threads (i have something like pthread_setscope which works) and I'm looking for some set of tests to avoid writing one for every function I ...
1
vote
1answer
35 views

How important is it to have a clean test suite on CouchDB?

I recently installed CouchDB, but haven't gotten past the test suite yet. It seems that each time I run it, I get different errors than before, even without configuration changes. The CouchDB Guide ...
1
vote
3answers
90 views

What is TestSuite?

I am relatively new to Java and new to JUnit testing. It's absolutely clear to me what is Test but TestSuite confuses me. Can someone explain me what TestSuite means?
1
vote
1answer
111 views

TestSuite with testsuites and testcases

I need to make a big python suitecase consisted of other suitcases and testcase which I have already made to execute together. How do I do this? For example, here there is a suitecase ...
1
vote
4answers
112 views

Stop testsuite if a testcase find an error

I have a testSuite in Python with several testCases. If a testCase fails, testSuite continues with the next testCase. I would like to be able to stop testSuite when a testCase fails or be able to ...
1
vote
0answers
231 views

Is there a way to force Maven Surefire or JUnit to indicate the name of the failing test class when executed from a Test Suite?

My question: Is there a way to force Maven Surefire (or JUnit?) to indicate the name of the failing test class when this class has been executed from a Test Suite? Now, the long story. Imagine you ...
1
vote
1answer
272 views

How to create a JUnit 4 test suite to pass when expected exceptions are thrown

I am writing a JUnit 4 test suite which runs some tests that check if an exception has been thrown. On their own, my tests look somewhat like this: @RunWith(value=BlockJUnit4ClassRunner.class) public ...
1
vote
1answer
61 views

Test Suites for testing comet server functionality through PHP

What test suites are there for testing comet server functionality through PHP?
1
vote
1answer
167 views

Log information inside a JUnit Suite

I'm currently trying to write inside a log file the total number of failed tests from a JUnite Suite. My testsuite is defined as follows: @RunWith(Suite.class) @SuiteClasses({Class1.class, ...
1
vote
1answer
127 views

rake test and test_structure.sql

First of all, I have to run "rake RAILS_ENV=test ..." to get the test suites to hit my test DB. Annoying but ok to live with. However when I do so, I get a long stream of errors like so: > rake ...
0
votes
2answers
23 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
0answers
19 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
0answers
55 views

How to create a JUnit TestSuite thats loads the tests from a package or folder? [closed]

Possible Duplicate: JUnit4 run all tests in a specific package using a testsuite i need to create a JUnit(4) TestSuite that is able to load the test classes at runtime. I have a changing ...
0
votes
1answer
123 views

send parameters from test suite to test case in junit 4

I've got four junit cases and I need to pass them a parameter, that is the same for all of them, but this parameter is created in a dynamic way in the test suite. How can I pass a parameter from the ...
0
votes
0answers
50 views

Netbeans run tests from multiple projects

Using netbeans 7 and junit 4 there is automatic test discovery based on the @Test annotation and test naming scheme. However, this only applies to the project level. Some searching around has shown ...
0
votes
2answers
390 views

Attempting to run Selenium IDE Python scripts as test suite

I have a couple of problems with running more than one Python test script exported by Selenium IDE Python Remote Control plugin formatter. 1) After a python script is completed the browser window ...
0
votes
0answers
37 views

selenium php suites

since the ide does not generate php suites for me, and only junit, it's hard to follow. anyone can give example? addTests, addFile, suite function are used but how to use them properly? can someone ...
0
votes
1answer
331 views

TestSuite Setup in jUnit 4

I've managed to find out how to make a TestSuite in jUnit 4, but I really miss the v3 possibility of wrapping a suite in a TestSetup. Any ideas as to how to get some @BeforeClass/@AfterClass setup ...
0
votes
1answer
111 views

Can anyone recommend a comprehensive test suite for an FTP server?

Having modified a c++ ftp server implementation for work i would really like to validate it to make sure it still follows the spec and will not crash on bad input. Does any one know of a good ftp ...
0
votes
2answers
603 views

JUnit 4: how do I create a suite of suites?

Running the junit below raises an exception. import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; import ...
0
votes
2answers
305 views

How to implement Test Suite for Java Selenium tests

I would like to call my Selenium tests, written in Java (@Test annotated) from one class. Is there option make it class as kind of Test Suite,perhaps annotated appropriately? thanks.
0
votes
2answers
87 views

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?
0
votes
1answer
152 views

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 ...
0
votes
1answer
159 views

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 ...
0
votes
1answer
195 views

How to execute test suites based on requirement in boost.test library

I am using Boost.Test library for implementing unit test cases in C++. Suppose I have two suites such as BOOST_AUTO_TEST_SUITE(TestA) BOOST_AUTO_TEST_CASE(CorrectAddition) { BOOST_CHECK_EQUAL(2+2, ...
0
votes
2answers
213 views

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 ...
0
votes
2answers
203 views

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 ...
0
votes
2answers
916 views

Running JUnit test classes from another JUnit test class

I have two classes that I am testing (let's call them ClassA and ClassB). Each has its own JUnit test class (testClassA and testClassB respectively). ClassA relies on ClassB for its normal ...
0
votes
3answers
232 views

Test Suite unittest

I have a test suite and I am trying to get it to work with the tests I have created. The test work if I run them individually but I want to run them all in a test suite. The code below show the test ...