I couldn't run any unit tests either in the window xp?

The IDE is functional. I write the simple example unit test script in the editor, as follow:

def testHelloWorld(self):

  print("Hello World!")

but no test shows up in the unit test window. When clicking the Run button of the Unit test pane, nothing happens, and the IDE window dissappears, there is no way to get back to it other than restarting the IDE.

It had stucked me for several days, that would be preciate if anyone can help me solve this problem!

Thank you very much.

Janet

link|improve this question
Had this - pressing Alt+Shift+C brings the IDE back. I was closing the window and restarting until I had about Sikuli 20 processes running... – Phantomwhale Nov 17 '10 at 11:29
feedback

1 Answer

To run a unit test, you must have a setUp method, a tearDown method, and one or more test methods whose names begin with "test". Each of them takes self as their first argument.

Here is a mock-up you can use. It's an example test for the Windows Calculator (not tested):

def setUp(self):
    setAutoWaitTimeout(10)
    openApp("C:\\Windows\\system32\calc.exe") # open windows calculator
    wait("CalculatorWindow.png") # wait for calculator window to appear

def test_calculator(self):
    with Region(find("CalculatorWindow.png")):
        click("1_Button.png")      # Click "1"
        click("Plus_Button.png")   # Click "+"
        click("2_Button.png")      # Click "2"
        click("Equals_Button.png") # Click "="
    type("c",KEY_CTRL)
    assert Env.getClipboard() == 3

def tearDown(self):
    closeApp("Calculator") # Matches text from the window's title bar

Here's a fuller example of a unit test, but it was written for Sikuli 0.9, so many of the Sikuli methods (click, find, etc.) are different from the current version of Sikuli. But the unit testing methods are all there (setUp, tearDown, test*): http://sikuli.org/documentation.shtml#examples/TestJEdit.sikuli/TestJEdit.html

link|improve this answer
I can't find anywhere were it says setUp and tearDown are optional, but you would assume so? – Blundell Dec 14 '11 at 16:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.