Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipse-dev] Re: junit


Béatrice,

Your question is more appropriate for the newsgroups.  That said, are you running your JUnit testcase from the command line or with the PDE?  

I have seen the error you posted if the -application command line parameter incorrectly specifies the PDE JUnit Plug-in Test's  org.eclipse.pde.junit.runtime.uitestapplication startup application (code located here: http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.pde.junit/) instead of the Eclipse Automated Testing plug-in's application org.eclipse.test.uitestapplication (code located here: http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.test/).

If this is the case, the error occurs because the PDE JUnit Plug-in is attempting to connect back to the development environment to report results via a socket. When launched from a command line there's nobody listening.  Another possibility, if you're running in the PDE environment, is that your firewall is blocking the connection from your runtime instance to the development environment.  You should add a rule to allow it in this case.

-- Dan

-------------------------------------------------------------

co-author "The Java Developer's Guide to Eclipse", 2nd edition (preview at http://www.jdg2e.com)





----- Message from Béatrice CHAMBET-FALQUET <beacf@xxxxxxx> on Sat, 5 Feb 2005 21:38:40 +0100 -----
To:
<eclipse-dev@xxxxxxxxxxx>
Subject:
[eclipse-dev] junit

hello,
 
i want to use Junit and so i did. but when i run a junit test i have the following messge :
 

ould not connect to: : 11867

java.net.ConnectException: Connection refused: connect

at java.net.PlainSocketImpl.socketConnect(Native Method)

at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)

at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)

at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)

at java.net.Socket.connect(Socket.java:452)

at java.net.Socket.connect(Socket.java:402)

at java.net.Socket.<init>(Socket.java:309)

at java.net.Socket.<init>(Socket.java:124)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.connect(RemoteTestRunner.java:547)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:270)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:167)

 

what have i done wrong ?

 

Thanks_______________________________________________
eclipse-dev mailing list
eclipse-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
http://dev.eclipse.org/mailman/listinfo/eclipse-dev


Back to the top