Hello >From the looks of that code it is expecting you to build all your samples in a file called AllTests.java and then compile it. To me it looks a little pointless, you would be better off just running your code normally.
If you are new to both android, java and eclipse I would suggest you start with the Hello World and Hello Views on the google page: http://developer.android.com/guide/tutorials/hello-world.html It will be a lot easier for you and give you a little tutorial on how to set everything up. Good luck! On Aug 26, 12:02 am, budoka <[email protected]> wrote: > Hi there, > > I am brand new to both Java and Android, but I'm really interested in > Android development. Anyway, I'm trying to get going with TDD for the > platform. I found this in the API samples: > > public class AllTests extends TestSuite { > > public static Test suite() { > return new TestSuiteBuilder(AllTests.class) > .includeAllPackagesUnderHere() > .build(); > } > > } > > I believe it's supposed to allow me to run all my tests, however, I > have a separate test file, and it's not being called or run when I run > the tests in Eclipse. Do I have to set up further config to have the > project find all my test files? > > Thanks in advance. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

