The tests run in the device simulator, not in Eclipse. (If there's a
way to run them in Eclipse, I'm not aware of it.) Add a link
somewhere in your app to app/SpecRunner. Then the tests run when you
select that link. If there are any test failures, you can see the
details in the log. Use System.getProperty("is_emulator") to make the
link appear only when run in the simulator, and to be hidden when run
on the actual device. I think I I remember reading somewhere in the
Rhodes docs that the mspec test code is excluded from the build when
doing a production build for the device, although I can't confirm
that. (Does anyone know if that is correct?)
--Rob Roberts