--
You received this message because you are subscribed to the Google Groups "gosu-lang" group.
To post to this group, send email to gosu...@googlegroups.com.
To unsubscribe from this group, send email to gosu-lang+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/gosu-lang?hl=en.
Are you trying to debug a .gsp file, a .gs, or a .gsx? And what's the
mechanism that you're using to run it?
For testing, there are various strategies that you can use to get
tests to run in IntelliJ, though they're not the most elegant. Check
out the TosaSuite test suite for the Tosa project:
https://github.com/akeefer/Tosa/blob/master/tosa-test/test-src/test/TosaSuite.java
Basically, we're just creating a JUnit 4-style suite class, and then
the tests themselves are just normal JUnit 4 tests, using the @Test
annotation. You can then run the whole suite in IntelliJ, and if you
run tests that way and use the "debug" option, you should be able to
debug your Gosu code.
-Alan