The suite tag has no wiki summary.
0
votes
1answer
17 views
Changing background colour in Eclipse [duplicate]
I am using Spring Tools Suite in Eclipse Juno, but the problem I have is the background is dark.
How do I change it back to white? I can't see all my code properly.
Any help will be appreciated.
1
vote
1answer
44 views
Get information from Web Service Oracle SOA Suite in Java
We've made a web service according to the book: "Getting Started With Oracle SOA Suite 11g R1 – A Hands-On Tutorial"
We followed the guide like in chapter 5, but now we are having problems finding ...
0
votes
0answers
18 views
Obtain return value from a class executed using JUnit 4 SuiteClasses annotation
I'm using JUnit4 to drive test programs written in Java + Selenium Webdriver API. The test programs exercise EXT-JS web applications. A typical test driver class utilizes JUnit SuiteClasses to execute ...
0
votes
0answers
31 views
InstallShield Suite Installer and GAC
I'm using InstallShiled 2012 Spring Premiere edition.
I have a Suite installer that uses a .NET library to handle Activation Codes to determine which product(s) to install.
In our currently broken ...
0
votes
0answers
29 views
Using the same image for importing products with woothemes CSV suite
I have been using woothemes CSV Suite (http://www.woothemes.com/products/product-csv-import-suite/) for importing my products.
But the problem is I have a lot of products which use the same image. I ...
0
votes
0answers
36 views
Working of Competitive monitoring using Oracle Involver Conversation Suite [closed]
How does Oracle Involver - Conversation Suite keeps a tab on the Competitor Facebook or Twitter activity in message stream?
0
votes
3answers
87 views
Why does a JUnit suite class not execute its own Test, Before, and After annotations?
Why does a JUnit Suite class, in my cases its called TestSuite.class, not execute its own Test, Before, and After annotations? It only exectutes its own BeforeClass, AfterClass, and then ALL ...
0
votes
1answer
93 views
How to create xml output for a junit test suite
I was wondering how I can create an XML file for a Junit suite.
At the moment I have a custom runner which extends BlockJUnit4ClassRunner and generates XML each test class with information such as ...
0
votes
0answers
65 views
eMMC Protocol Test suite
is there any off the shelve eMMC (4.5 or above) protocol testing suite available or that any one knows?. I could see eMMC bus analysers available and even electrical/compliance testing solutions ...
0
votes
0answers
94 views
Parameterized tests for multiple classes that implement a given generic Interface
I like to re-invent the wheel for practicing my poor programming skills, so I've created a Queue interface that is implemented by two classes: LinkedQueue and FixedQueue.
I was very happy with my ...
3
votes
3answers
66 views
automatic inclusion of classes in a Java test suite
Test suites in Junit4 run nicely, but there's a snag here:
@RunWith(Suite.class)
@Suite.SuiteClasses({ A.class, B.class, ...})
If somebody develops a unit test and forgets to include it in ...
0
votes
2answers
495 views
Auto-deploy/reload a jar in weblogic server
I am new to Oracle SOA Suite 11.1.1.4... Currently I am working on User defined XPath Functions. As part of this, I will prepare a jar file and need to deploy into weblogic server(10.3) domain lib ...
0
votes
2answers
149 views
Anyone know of a full suite of Devise Rspec / Capybara tests
I've been learning Rails 3 with Devise and, so far, seem to have it working quite well. I've got custom session & registration controllers, recaptcha is working and a signed-in user can upload an ...
1
vote
4answers
389 views
writing a custom setup.exe suite installer
I've been tasked to create an installer that will handle and install multiple .msi files. I nearly went down the InstallShield route, but you need to Premier edition to create Suite installations, and ...
0
votes
1answer
112 views
Organizing Scientific Data and Code - Experiments, Models, Simulation, Implementation
I am working on a robotics research project, and would like to know: Does anyone have suggestions for best practices when organizing scientific data and code? Does anyone know of existing scientific ...
0
votes
1answer
387 views
WSO2 SOA suite first test
Stackoverflow community.
I found out that WSO2 community can be contacted on this site, so I'm going to ask a simple orientation question.
I would like to deploy a simple "Hello world" service and ...
1
vote
1answer
467 views
PHPUnit --loader: What is a test suite loader for?
PHPUnit manual say:
If you point the PHPUnit command-line test runner to a directory it will look for *Test.php files.
see: ...
5
votes
1answer
349 views
Parameterized suites in Junit 4?
With @RunWith( Suite.class ) I can group test classes into a test suite and run them all together. With @RunWith( Parameterized.class ) I can run the same test for different parameters. What I want is ...
0
votes
1answer
306 views
is it possible create two “asterisk” instances with “asterisk java”?
i'm working with asterisk test suite and also creating custom test. but i'm trying replace some python script with java.
the problem is i don't know how to create two asterisk instances with custom ...
0
votes
1answer
127 views
Python Suite, Package, Module, TestCase and TestSuite differences
Best Guess:
method - def(self, maybeSomeVariables); lines of code which achieve some purpose
Function - same as method but returns something
Class - group of methods/functions
Module - a script, OR ...
1
vote
0answers
288 views
Installshield suite uninstaller doesn't uninstall every feature
I have an Installshield suite project(setup.exe) containing 2 features(msi packages) you can choose to install (lets say A and B). I also have an upgrade option that should uninstall old package and ...
1
vote
0answers
142 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 ...
-1
votes
2answers
268 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 ...
0
votes
0answers
183 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 ...
1
vote
0answers
168 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;
...
0
votes
2answers
336 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
522 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
1answer
287 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
65 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 ...
2
votes
3answers
774 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 ...
-1
votes
2answers
341 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 ...
1
vote
1answer
222 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 ...
6
votes
1answer
648 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 ...
0
votes
2answers
2k 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>
...
1
vote
1answer
296 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 ...
3
votes
2answers
2k 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
3answers
2k 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 ...
2
votes
2answers
1k 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 ...
3
votes
1answer
757 views
Junit4: Running a Suite of particular 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 ...
0
votes
1answer
754 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 ...
4
votes
2answers
2k 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
543 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 ...
6
votes
1answer
3k 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 ...
4
votes
3answers
1k 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 ...
1
vote
1answer
312 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
913 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
961 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
1answer
105 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
vote
2answers
783 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
111 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 ...

