-
as seen on Programmers
- Search for 'Programmers'
Let me explain my situation. I'm planning a kind of test case runner for doing testcases on external devices, which are microcontroller based. Lets consider the devices:
Device 1
Device 2
There exist a lot of test cases which can be run with one of the devices above. For example:
Testcase 1
Testcase…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
Overview
Many web service developers use soapUI for various
tests like: smoke test, unit test, and load testing because you can
get a free edition that is fairly robust. However, if you need to
venture into more complex testing that requires a dynamic payload,
then the free edition doesn't…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a script that acts as a wrapper for some unit tests written using the Python unittest module. In addition to cleaning up some files, creating an output stream and generating some code, it loads test cases into a suite using
unittest.TestLoader().loadTestsFromTestCase()
I am already using…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How is that for a lot of acronyms!
I am having trouble testing GWT's RPC mechanism using GWT's GWTTestCase. I created a class for testing using the junitCreator tool included with GWT. I am attempting to test using the built in Google App Engine using the created "hosted mode" testing profile created…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
If there are several methods in the test class, I found that the order to execute is alphabetical. But I want to customize the order of execution. How to define the execution order?
For example: testTestA will be loaded first than testTestB.
class Test(TestCase):
def setUp(self):
..…
>>> More