Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [swtbot-dev] problems running swtbot test suite in some configurations

I'm also trying to "debug" what's going wrong by inserting println

	@Test
	public void getsAllShells() throws Exception {
		for (SWTBotShell s : bot.shells())
			System.out.println("shell: " + s.getText());
		assertEquals(2, bot.shells().length);
	}

but I see no such prints in the mvn output... is there way to see the
output somewhere?  It's not even in the .txt files generated by surefire...

-- 
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
HOME: http://www.lorenzobettini.it
Xtext Book:
http://www.packtpub.com/implementing-domain-specific-languages-with-xtext-and-xtend/book



Back to the top