XiMengJianYu/.svn/pristine/1c/1c28e880ef3028c540e8477fef5892046c716b98.svn-base

13 lines
355 B
Plaintext
Raw Permalink Normal View History

2023-04-17 17:58:44 +08:00
package com.cm.utils;
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);
}
}