Tagged Questions
5
votes
5answers
369 views
Writing a re-usable unittest.TestCase method
I'm writing tests using the unittest package, and I want to avoid repeated code. I am going to carry out a number of tests which all require a very similar method, but with only one value different ...
3
votes
1answer
142 views
How can I do such a typical unittest?
This is a simple structure in my project:
MyAPP---
note---
__init__.py
views.py
urls.py
test.py
models.py
...
2
votes
5answers
339 views
Giving parameters into TestCase from Suite in python
From python documentation(http://docs.python.org/library/unittest.html):
import unittest
class WidgetTestCase(unittest.TestCase):
def setUp(self):
self.widget = Widget('The widget')
...
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
2answers
164 views
str object is not callable for unittest
I have written a test case which shows the error
from unittest import *
class MyTest(unittest.TestCase):
def test_add(self):
self.assertEquals(1,(2-1),"Sample Subraction Test")
if ...
1
vote
2answers
328 views
How to input parameters into Selenium RC TestSuite?
I have to test few sites which sales the same things, but they have an another template.
So I want to run each MainTestClass with giving some input parameter, let's say :
java -jar ...
1
vote
2answers
231 views
how to add dozen of test cases to a test suite automatically in python
i have dozen of test cases in different folders. In the root directory there is a test runner.
unittest\
package1\
test1.py
test2.py
package2\
test3.py
test4.py
testrunner.py
...
0
votes
0answers
5 views
Set on testcasedisplay dialog My refresh buttom is good I need help on set it up on count
this is display dialogy rsrc.pyu-Eclipse
{'type':'Button',
'name':'Refresh',
'position':(100, 100),
'command':u'Refresh',
'label':'Refresh',
},
*{'type':'StaticText',
...
0
votes
1answer
51 views
Error in email sending during testcase in django?
I have a simple django application which allows users to add a new user.Whenever we created a new user,a mail will send to that respective email-id (what we gave while creating a new user).If i have ...
0
votes
2answers
392 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
1answer
45 views
Should one use TestCase or FunctionTestCase for testing in python?
While trying to get a hinch of TDD in python I encountered the FunctionTestCase class. I understand, that it defines equivalent functions to the TestCase classes.
assertEqual = failUnlessEqual(self, ...
0
votes
2answers
179 views
How to change docstring of TestCase Class in Python?
In Python 2.5 (Jython actually), for the UnitTest TestCase Class - there's is no SetUpClass method, and __init__ is not really acceptable (no refference to self).
When I try to change docstring inside ...