Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
114 views

How to unittest unittest TestCases

I have a unittest.TestCase child, which defines several domain specific assert Checks. I would like to run some unittests to unittest this functionality to control that everything work on future ...
1
vote
0answers
59 views

Convert Jython to Java

How can I convert the code below from Jython to Java? The code will be used to run the Junit test to set the proxy details to make JUnits more usable. Jyhon code: from java.lang import *; from ...
0
votes
0answers
16 views

remove .py from the jython based web application url

This is the follow up of this question how to remove .py from the url in jython , I couldnt get it solved till now, and hope to get some more suggestions for it. Here is my web.xml file: <?xml ...
0
votes
0answers
32 views

Monkeyrunner throwing “ShellCommandUnrespo​nsiveException” - any work around?

I am facing some issues in device.shell('ping -c 2 192.168.1.1') inside a monkeyrunner script. Its throwing ShellCommandUnrespo‌​nsiveException [main] ...
0
votes
0answers
21 views

Error while issuing ping command inside monkeyrunner script

i am facing some issues in device.shell('ping -c 2 192.168.1.1') inside a monkeyrunner script. Its throwing below error:- 120202 20:12:17.192:S [main] [com.android.chimpchat.adb.AdbChimpDevice] Error ...
0
votes
1answer
35 views

Jython ImportError when embedding into Java on 'xml.dom.minidom'

I have a python script which is processing XML using xml.dom.minidom. When I executed it with Jython by command line (jython myfile.py), everything was fine. But when I tried to do the same thing ...
0
votes
0answers
9 views

does jython support class-level fixtures from unittest module?

Can somebody help me to find whether jython 2.5.2 jar support Class-level fixtures so that it can call setupclass() teardownclass() methods automatically. I am trying to use both jython 2.5.1 and ...