|
|
Re: running without -g
|
Posted: Jan 28, 2003 6:28 AM
|
|
> I've created a few simple tests and have successfully run > them with the graphical interface. The problem arises when > I try to run the tests in a non-graphical interface like > bash. If the X-server is not running the Runner fails with > an exception that it can't connect to the X11 server? > > Could the Runner just skip the whole graphical stuff when > initialized without -g? > Interesting feedback. We assumed the "default" should be to run the graphical reporter. We figured that graphically would be the main way people want to run. I suspect it is.
To exclude graphical reporter, you need to explicitly request a different reporter, such as the standard output reporter:
<pre> java -jar suiterunner-1.0beta2.jar -p "example" -o -s com.artima.examples.account.ex6test.AccountSuite </pre>
Does that solve your problem?
|
|