Tagged Questions
The suite tag has no wiki summary.
3
votes
3answers
409 views
How do I make Eclipse recognize JUnit tests when creating a suite?
When I use Eclipse to create a JUnit test suite, it does not detect any existing tests, and warns "No test classes selected."
I started from the test class package (test/com/.../package), and the ...
2
votes
2answers
499 views
JUnit 4's @Suite, passing data, @Rule and deprecating @Before and @After
I'm working with some legacy test code which makes use of a TestSetup class to setup and teardown a server around a test suite of classes containing tests. I've converted the classes to use junit ...
2
votes
1answer
209 views
Junit4: Creating a suite of test Methods
Is there a way to create a suite of test methods, not just test classes?
I'd like to put together a test suite that just runs particular tests methods from a test class. I don't see a way to do this ...
2
votes
1answer
1k views
Spring 3+ How to create a TestSuite when JUnit is not recognizing it
I'm using Spring 3.0.4 and JUnit 4.5. My test classes currently uses Spring's annotation test support with the following syntax:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration ...
1
vote
0answers
30 views
Syntax error when setting up test suite for JUnit 4
In order to test with Junit 4, I manage to setup the test suite like the following
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
...
1
vote
1answer
37 views
boost-test initialization for each suite (not case)
I need to init some variables, which are "global" inside a BOOST_AUTO_TEST_SUITE
so their constructors will be called when the suite starts and their destructors will be called right after the last ...
1
vote
0answers
87 views
junit implementation of multiple runners
I have been trying to create a personalized test suite by creating a suiterunner which extends runner. In the test suite which is annotated with @runwith(suiterunner.class) i am referring to the test ...
1
vote
1answer
119 views
Selenium Test Suite: differing paths to test cases
I have a test suite that does the following
log in
do tests
log out
since I want to reuse log in and log out with other test suites I moved them into a separate folder and referenced those test ...
1
vote
1answer
374 views
Running JUnit Test in parallel on Suite Level?
I have a bunch of tests that are organized in JUnit test suites. These tests are greatly utilizing selenium to test a web application. So, naturaly for selenium, the runtime of these tests is quite ...
1
vote
2answers
533 views
android - accessing test application assets
I've an XML file in the assets directory of my test application. I want to access this file from my suite method of the test class.
ie.,
public static TestSuite suite(){
InputStream stream = // ...
1
vote
3answers
247 views
Is anyone familiar with Bamboo sharepoint products?
We are looking at 3rd party application solution providers for SharePoint, and are interested in the Bamboo products (bamboosolutions.com).
Has anyone had any experience with these products? Are they ...
1
vote
1answer
118 views
How to select some of test cases to compose the BAT test(build acceptance test)?
In junit test, should I create another test suite named as ExampleBAT to do this, and this test suite contains the selected test cases?
1
vote
1answer
383 views
Problem with Mockito - exceptions.verification.WantedButNotInvoked
When I put a "VerificationModeFactory.times(2)" in test before, when I run all tests of the class appears this exception:
org.mockito.exceptions.verification.WantedButNotInvoked:
Wanted but not ...
1
vote
1answer
468 views
How to rewrite data-driven test suites of JUnit 3 in Junit 4?
I am using data-driven test suites running JUnit 3 based on Rainsberger's JUnit Recipes.
The purpose of these tests is to check whether a certain function is properly implemented related to a set of ...
1
vote
2answers
515 views
fitnesse test suite with variables
I was wondering is it possible to set up a variable within the test suite so thatit can be passed down to the setup fit page as a parameter value ?
1
vote
1answer
76 views
ASP.Net Media Suite - Review
Does anyone have a review of ASP.Net Media Suite located on
http://www.aspnetmedia.com/
The tool seems pretty nice, but i've never heard of the company. I'm hesitant to purchase and install ...
1
vote
6answers
2k views
what is the best control suite for winforms applications?
i know devexpress have some more intuitive controls over infragistics, but what about component factory or telerik? What winforms controls would you recommend?
0
votes
0answers
9 views
Installshield suite project logging
Is there any way that the logging of Installshield suite setup.exe file can be automatic? I can create a batch file that does:
Setup.exe /debuglog"C:\logpath\SomeLog.log"
but I'd rather setup.exe do ...
0
votes
0answers
22 views
Installshield standalone builder throws an exception when building multilanguage suite project
I have an InstallShield 2012 suite project containing several msi packages that are localized and I'm building the project by using IsCmdBld.exe. The weird thing is that when I select more than 18 ...
0
votes
1answer
27 views
Folder structure of InstallShield suite project
I have a problem concerning folder structure of a built InstallShield suite project.
I have several MSI packages included into the suite, and I want them to be copied from source media and not ...
0
votes
1answer
27 views
Is there a way to specify parameters for included methods in TestNG suite.xml?
I'm writing a suite.xml for an own testframework based on TestNG. My xml file looks like:
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Suite" ...
0
votes
0answers
15 views
Oracle SOA client authentication by certificate
Is it possible to configure Oracle SOA composite service for authentication by client certificate? For instance, we have Oracle composite service and WCF service. Composite service should be ensured ...
0
votes
1answer
22 views
Development of a Suite Application with modules download for iPhone
I'm starting developing applications for iPhone. My idea is to develop a application like a suite or multiple modules. The main application function is a application manager. This application can ...
0
votes
1answer
52 views
How can I share one Selenium webdriver instance in NUnit and C#?
I want easy way to launch Selenium webdriver instance and run various tests on it. I'm trying to do this in Suite file, but it doesn't work. Instance is killed instantly. Is there any alternatives on ...
0
votes
1answer
126 views
Using WeifenLuo DockPanel Suite
I have just downloaded the WeifenLuo(Dock Panel Suite) and trying to work with that but I couldn't find a specific documentation on how to use it.
And I have gone through some of the SO questions and ...
0
votes
1answer
264 views
Testng BeforeSuite runs only one test class
I have the following testng.xml
<test name="CommonReportingTests" preserve-order="true">
<classes>
<class name="com.blah.ReportRunTests">
<methods>
...
0
votes
2answers
609 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
1answer
431 views
grails development: eclipse vs. intellij idea
i downloaded sts and installed the grails/groovy plugins which is good, but i can not use the javascript functionality like jumping trought classes and functions in the javascript editor.
when i click ...
0
votes
1answer
59 views
which one to choose, Codejocks Xtreme Toolkit or Xtreme Suite?
I am new in programming and it may look naive to some of you, but I am a little bit curious why Toolkit Pro is needed if Suite Pro exist. Although Toolkit is specificly for MFC, Suite Pro can be also ...
-1
votes
2answers
38 views
SQL Oracle HRMS
select ppf.employee_number , ABA.absence_days
from PER_ABSENCE_ATTENDANCES ABA, apps.PER_ALL_PEOPLE_F ppf
where ppf.person_id = aba.person_id
I need to get all employee numbers and absence ...
-1
votes
2answers
55 views
Developing plugin applications for oracle ebusiness suite
i am facing a challenge i would like to have your opinion on.
we have a customer running Oracle eBusiness Suite for their central management of assets and sales etc.
now we are tasked to create a ...