Automated testing in Android development
        Posted  
        
            by Sara
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Sara
        
        
        
        Published on 2010-03-17T12:02:24Z
        Indexed on 
            2010/03/17
            16:21 UTC
        
        
        Read the original article
        Hit count: 566
        
I have an ordinary project with JUnit tests that are connected to the classes in my Android Project. I want my server to run some JUnit tests in my testproject everytime I commit my code from my Android Project.
Is there a best practise to do this? So far I only managed to run the tests when they are a part of a while the JUnit tests and Android classes are separated into 2 different projects, since JUnit runs on JVM and Android in an emulator on DVM (Dalvik Virtual Machine).
© Stack Overflow or respective owner