LargeTest

public abstract @interface LargeTest
implements Annotation

android.support.test.filters.LargeTest


注释将大的测试大小限定符分配给测试。 此注释可以在方法或类级别使用。

测试大小限定符是构建测试代码的一种很好的方式,用于将测试分配给类似运行时间的测试套件。

执行时间:> 1000ms

大型测试应关注于测试所有应用程序组件的集成。 这些测试完全参与系统,并可能使用所有资源,如数据库,文件系统和网络。 根据经验,大多数功能性UI测试都是大型测试。

注意:此类替换已弃用的Android平台大小限定符 ERROR(/android.test.suitebuilder.annotation.LargeTest)并且是对使用Android测试支持库编写的测试进行注释的推荐方式。

Summary

Inherited methods

From interface java.lang.annotation.Annotation