Android Open Source - AndroidLifecycleTest Application Test






From Project

Back to project page AndroidLifecycleTest.

License

The source code is released under:

MIT License

If you think the Android project AndroidLifecycleTest listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.example.lifecycletest;
/*from   w  w  w .  j  ava  2s . co  m*/
import android.app.Application;
import android.test.ApplicationTestCase;

/**
 * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
 */
public class ApplicationTest extends ApplicationTestCase<Application> {
    public ApplicationTest() {
        super(Application.class);
    }
}




Java Source Code List

com.example.lifecycletest.ApplicationTest.java
com.example.lifecycletest.LifeCycleActivity.java
com.example.lifecycletest.LifeCycleFragment.java
com.example.lifecycletest.MainActivity.java
com.example.lifecycletest.MainFragment.java
com.example.lifecycletest.SampleFragment.java
com.example.lifecycletest.SecondActivity.java
com.example.lifecycletest.ThirdActivity.java